
/* komentarze pod postami (comment-block.css) */
.comment-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: left; /* Nowe ustawienie */
    margin-left: 0; /* Upewnij się, że nie jest wycentrowany */
    margin-right: auto; /* Automatyczne wyrównanie do lewej */
    width: fit-content; /* Dostosowuje szerokość do zawartości */
    max-width: 100%; /* Zapobiega przekroczeniu kontenera */
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.comment-form input[type="submit"] {
    background: #1a237e;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 6px;
}

.comment-form input[type="submit"]:hover {
    background: #3949ab;
}

.comment-form-captcha {
    margin-top: 20px;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
}

.comment-form-captcha label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.comment-form-captcha input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.comment-form-captcha span {
    font-size: 15px;
}
