.latam-simplified-fields {
    margin: 15px 0;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.latam-simplified-fields .form-row {
    margin-bottom: 15px;
}

.latam-simplified-fields label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.latam-simplified-fields .input-text {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.latam-simplified-fields .input-text:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

.latam-simplified-fields select.input-text {
    background: white;
    cursor: pointer;
}

.latam-validation-error {
    color: #e2401c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.input-error {
    border-color: #e2401c !important;
}

#latam-card-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .latam-simplified-fields .form-row-first,
    .latam-simplified-fields .form-row-last {
        float: none;
        width: 100%;
    }
}

/* Loading state */
.latam-processing {
    opacity: 0.7;
    pointer-events: none;
}

.latam-processing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
}