#comment-section.hidden {
    display: none;
}

#comment-section {
    display: grid;
}
#comment-form {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: grid;
    gap: 15px;
    padding: 15px;
    border: 1px solid #444;
    border-radius: 10px;
    background-color: #222;
    color: #E0E0E0;
}

#comment-form input {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #191919;
    color: #E0E0E0;
    outline: none;
}

#comment-form input:focus {
    border-color: #888;
}

#comment-form .btn {
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    background-color: #333;
    color: #E0E0E0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#comment-form .btn:hover {
    background-color: #555;
}

#comment-list {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.comment {
    display: grid;
    grid-template-columns: 150px 1fr 150px 40px;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    background-color: #333;
    color: #E0E0E0;
}

.comment-content {
    font-size: 14px;
}



.comment-author {
    font-weight: bold;
    margin-right: 10px;
    font-size: 13px;

}

.comment-date {
    font-size: 10px;

}

.comment-delete {
    background: transparent;
    border-radius: 20px;
    border: 1px solid #666;    cursor: pointer;
    color: #888;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.comment-delete:hover {
    background-color: #E63946;
    border-color: #E63946;
    color: #fff;
    }

#comment-nav {
    display: grid;
    grid-template-columns: 40px 40px;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

#comment-nav .btn {
    width: 40px;
    height: 40px;
    border-radius: 25px;
    border: #E0E0E0;
    background-color: #333;
    color: #E0E0E0;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 18px;
    font-weight: bold;
}

#comment-nav .btn:hover {
    background-color: #555;
}

#comment-nav .btn.disable {
    visibility: hidden;
    pointer-events: none;
}