/* Prywatne Pytania - Style formularza */

.prywatne-pytania-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.prywatne-pytania-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.prywatne-pytania-form .form-group {
    margin-bottom: 20px;
}

.prywatne-pytania-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.prywatne-pytania-form input[type="text"],
.prywatne-pytania-form input[type="email"],
.prywatne-pytania-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.prywatne-pytania-form input[type="text"]:focus,
.prywatne-pytania-form input[type="email"]:focus,
.prywatne-pytania-form textarea:focus {
    outline: none;
    border-color: #0073aa;
}

.prywatne-pytania-form textarea {
    resize: vertical;
    min-height: 120px;
}

.prywatne-pytania-submit {
    background: #0073aa;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.prywatne-pytania-submit:hover {
    background: #005a87;
}

.prywatne-pytania-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Komunikaty */
.pp-komunikat {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.pp-sukces {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pp-blad {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsywność */
@media (max-width: 768px) {
    .prywatne-pytania-wrapper {
        padding: 10px;
    }
    
    .prywatne-pytania-form {
        padding: 20px;
    }
}
