.comment-section {
    background: #000;
    color: #fff;
    padding: 2rem;
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 10px;
    font-family: 'Segoe UI', sans-serif;
}

/* Approved comments list */
.comment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.comment-list li {
    background: #111;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #333;
}

.comment-list strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #0cf;
}

.comment-list small {
    font-size: 0.8rem;
    color: #aaa;
}

.form-group {
    width: 90%;
}

/* Form Styling */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comment-form label {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #ccc;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    background: #111;
    color: #fff;
    border: 1px solid #444;
    padding: 0.75rem;
    border-radius: 6px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #0cf;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 204, 255, 0.3);
}

.comment-form .form-actions {
    display: flex;
    justify-content: flex-start;
}

.comment-form button {
    width: 30%;
    background: #0cf;
    color: #000;
    font-weight: bold;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.comment-form button:hover {
    background: #00aacc;
}