/* WP Decision Helper Styles */
#wdh-decision-helper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
}

#wdh-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

#wdh-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#wdh-form .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

#wdh-form .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#wdh-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#wdh-result {
    border-left: 4px solid #28a745;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

#wdh-error {
    border-left: 4px solid #dc3545;
    border-radius: 8px;
}

.wdh-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    animation: wdh-spin 1s linear infinite;
}

@keyframes wdh-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #wdh-decision-helper {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    #wdh-form .form-control {
        font-size: 14px;
    }
}