/* Custom Psychology-Optimized Styles */

:root {
    --primary-color: #0d6efd; /* Trust Blue */
    --success-color: #198754; /* Growth Green */
    --warning-color: #ffc107; /* Attention Yellow */
    --danger-color: #dc3545; /* Error Red */
    --text-dark: #343a40;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    background-color: #f4f6f9; /* Slightly off-white for reduced eye strain */
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .card {
    transition: all 0.2s ease-in-out;
}

/* Card Styling - Soft shadows for depth without clutter */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Form Styling - Clean and spacious */
.form-label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    padding: 0.75rem 1rem; /* Larger touch targets */
    border-color: #ced4da;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Buttons - Clear calls to action */
.btn-primary {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}
