/* === Secțiunea de comentarii === */
.comments-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comments-section h3 {
    font-size: 1.6em;
    color: #222;
    margin-bottom: 15px;
    border-bottom: 2px solid #28a745;
    padding-bottom: 5px;
}

/* Formular de comentarii */
.comment-form {
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    height: 100px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    resize: vertical;
    background: #fff;
}

.comment-form button {
    margin-top: 10px;
    padding: 10px 18px;
    background-color: #28a745;
    color: white;
    font-size: 1em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.comment-form button:hover {
    background-color: #218838;
}

/* Afișare comentarii */
.comment {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s;
}

.comment:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comment-user {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}

.comment-date {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 10px;
}

.comment-text {
    font-size: 1em;
    color: #333;
    line-height: 1.4em;
    white-space: pre-wrap;
}

