/* Stylowanie formularza dostaw próbek */

.sample-addresses-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.sample-addresses-form .form-group {
    margin-bottom: 15px;
}

.sample-addresses-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    text-align: left;
}

.sample-addresses-form textarea {
    resize: vertical;
    min-height: 100px;
}

.sample-addresses-form textarea:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 0.2rem rgba(0, 124, 186, 0.25);
}

.sample-addresses-form .is-invalid {
    border-color: #dc3545;
}

.sample-addresses-form .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
}

/* Stylowanie informacji o produktach */
.products-delivery-info {
    margin-bottom: 20px;
}

.products-delivery-info ul {
    margin-bottom: 10px;
}

.products-delivery-info li {
    padding: 5px 0;
    border-bottom: 1px dotted #ddd;
}

.products-delivery-info li:last-child {
    border-bottom: none;
}

.products-delivery-info .fa {
    margin-right: 8px;
    width: 16px;
}

.products-delivery-info .text-primary {
    color: #007cba !important;
}

.products-delivery-info .text-success {
    color: #28a745 !important;
}

/* Alert boxes styling */
.alert h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.alert h5 {
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #333;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-warning h4 i {
    margin-right: 8px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sample-addresses-form {
        padding: 15px;
    }
    
    .sample-addresses-form .col-md-6 {
        margin-bottom: 20px;
    }
    
    .sample-addresses-form textarea {
        min-height: 80px;
    }
    
    .products-delivery-info .col-md-6 {
        margin-bottom: 15px;
    }
}

/* Button styling */
.btn-primary {
    background-color: #007cba;
    border-color: #007cba;
}

.btn-primary:hover {
    background-color: #006ba0;
    border-color: #006ba0;
}

.btn-primary:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Debug mode styling */
#standard-delivery-options {
    margin-top: 30px;
    padding: 15px;
    background: #f1f1f1;
    border: 2px dashed #ccc;
    border-radius: 5px;
}

#standard-delivery-options::before {
    content: "TRYB DEBUG - Standardowe opcje dostawy (ukryte)";
    display: block;
    font-weight: bold;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9em;
}

.pl-0{
    padding-left: 0px !important;
}

.mb-15{
    margin-bottom: 15px !important;
}