.comments-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

.comment-form {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.gdpr-notice {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

/* Zalogowany użytkownik */
.logged-in-user {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e7d32;
    font-size: 14px;
}

.logged-in-user svg {
    stroke: #4caf50;
    flex-shrink: 0;
}

.logged-in-user strong {
    color: #1b5e20;
}

/* Ukryte pole honeypot */
#honeypot {
    display: none;
}

.comment {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

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

.author {
    font-weight: 600;
    color: #333;
}

.date {
    color: #666;
    font-size: 12px;
}

.comment-body {
    margin-bottom: 15px;
    line-height: 1.5;
    word-break: break-word;
}

.comment-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-actions button {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.comment-actions button:hover {
    text-decoration: underline;
}

.delete-btn {
    color: #dc3545 !important;
}

.replies {
    margin-left: 30px;
    margin-top: 15px;
}

.reply-form {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.load-replies {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 0;
    margin-bottom: 10px;
}

.load-replies:hover {
    color: #333;
    text-decoration: underline;
}