
.comments-section{
    
    border-radius: 10px;
    border: 2px #3c3d3f solid;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: white;
}

.comments-title {
    margin: 0 0 18px 0;
    font-size: 22px;
    font-weight: bold;
    color: #3c3d3f;
}



.comments-navigation {
    
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.page-info {
    font-size: 14px;
    color: #585f64;
    align-self: center;
    
}



.comments-list {
    max-height: 600px;
    overflow-y: auto;
    text-align: left;
}



.comment {
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}

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

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: bold;
    font-size: 16px;
    color: #3c3d3f;
}



.comment-date {
    
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
}

.comment-text {
    font-size: 15px;
    color: #495057;
    margin-top: 5px;
}


/* This snippet of code for the button was generated using: http://css3buttongenerator.com/ */

.delete-btn {
    background: #3498db;
    background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
    background-image: -moz-linear-gradient(top, #3498db, #2980b9);
    background-image: -ms-linear-gradient(top, #3498db, #2980b9);
    background-image: -o-linear-gradient(top, #3498db, #2980b9);
    background-image: linear-gradient(to bottom, #3498db, #2980b9);
    border-radius: 28px;
    font-family: Arial;
    color: #ffffff;
    font-size: 14px;
    padding: 6px 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.delete-btn:hover {
    background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
}



.no-comments {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 40px 20px;
}

