.my-comments {
    margin-top: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.my-comments h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    border-left: 4px solid #0073aa;
    padding-left: 10px;
}

.my-comment {
    padding: 18px;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.my-comment:hover {
    background: #fafafa;
}

.my-comment:last-child {
    border-bottom: none;
}

.my-comment .author {
    font-weight: 600;
    color: #222;
}

.my-comment .date {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

.my-comment .content {
    margin-top: 10px;
    line-height: 1.7;
    color: #444;
}