/* Unique styles for the comments section */
.custom-comments-section {
    font-family: Arial, sans-serif;
}

.custom-comments-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.custom-comments-list {
    margin-top: 1rem;
}

.custom-comment-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.custom-comment-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.custom-comment-meta {
    margin-bottom: 0.5rem;
}

.custom-comment-name {
    font-size: 1rem;
    font-weight: bold;
    color: #007bff;
    margin-right: 1rem;
}

.custom-comment-date {
    font-size: 0.85rem;
    color: #777;
}

.custom-comment-text {
    font-size: 0.95rem;
    color: #555;
}

.custom-comments-actions {
    text-align: center;
}

.custom-comments-show-all {
    font-size: 0.85rem;
    color: #007bff;
    border: 1px solid #007bff;
    text-decoration: none;
}

.custom-comments-empty {
    text-align: center;
    font-style: italic;
    color: #999;
}

/* Dark overlay */
.share-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal Content */
.share-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

/* Share Options */
.share-options {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.share-options li {
    margin: 10px 0;
}

.share-options a {
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
}

.share-options a:hover {
    text-decoration: underline;
}

