/* yorum.css */
.avatar-circle {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
    flex-shrink: 0;
}

.comment-title-box {
    background-color: #f0f2f5;
    border-left: 6px solid #007bff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.comment-card {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-left: 4px solid #007bff;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comment-body {
    flex-grow: 1;
}

.comment-body .username {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
    color: #333;
}

.comment-body .text {
    font-size: 14px;
    color: #444;
}

.comment-body .date {
    font-size: 12px;
    color: #999;
}

.reply-box {
    margin-left: 55px;
    margin-top: 8px;
    background: #f8f9fa;
    border: 1px solid #dcdcdc;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.reply-form {
    margin-left: 55px;
    margin-top: 8px;
}

.reply-form textarea {
    font-size: 13px;
    padding: 6px 10px;
}

.btn-sm-custom {
    padding: 6px 10px;
    font-size: 13px;
}
.share-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.share-menu {
    display: none;
    position: absolute;
    bottom: 35px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 9999;
    display: flex;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.share-wrapper:hover .share-menu {
    opacity: 1;
    visibility: visible;
}
