
/* Elegant Light Mode for Prospekta - Industrial Contrast Edition */
body.light-mode {
    --bg-dark: #f8fafc !important; 
    --card-glass: #ffffff !important; 
    --border-glass: rgba(0, 0, 0, 0.12) !important;
    --text-dim: #475569 !important;
    --primary: #4f46e5 !important;
    
    background-color: #f1f5f9 !important; 
    background-image: none !important;
    color: #0f172a !important;
}

/* Base Utility Overrides */
body.light-mode.bg-\[#020617\] { background-color: #f1f5f9 !important; }
body.light-mode .text-white { color: #0f172a !important; }

/* CRM / Kanban Structure */
.light-mode .kanban-column {
    background: #e2e8f0 !important; /* Steel gray background for columns */
    border: 1px solid #cbd5e1 !important;
    border-radius: 2rem;
    padding: 1.25rem;
}

/* The Cards - Subtle Tint & High Contrast */
.light-mode .kanban-card {
    background-color: #ffffff !important;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%) !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    color: #1e293b !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-mode .kanban-card:hover {
    background: #ffffff !important;
    border-color: #4f46e5 !important;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.12) !important;
    transform: translateY(-4px);
}

/* Fix for internal texts in cards */
.light-mode .kanban-card p,
.light-mode .kanban-card span {
    color: #334155 !important;
}

.light-mode .kanban-card .text-indigo-400 {
    color: #4f46e5 !important;
}

/* Form Controls - Sharp & Professional */
.light-mode input, 
.light-mode select, 
.light-mode textarea {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05) !important;
    border-radius: 12px !important;
}

.light-mode input:focus {
    border-color: #4f46e5 !important;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1) !important;
}

/* Indicators */
.light-mode .animate-pulse {
    background-color: #dcfce7 !important;
    color: #166534 !important;
    border: 1px solid #bbf7d0 !important;
}

/* Nav & Layout */
.light-mode #app-nav {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.light-mode .glass {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
}

/* Overrides for specific utility classes in card HTML */
.light-mode .bg-white\/5 { background-color: #f8fafc !important; }
.light-mode .border-white\/5 { border-color: #e2e8f0 !important; }
.light-mode .bg-slate-900 { background-color: #f1f5f9 !important; }
.light-mode .bg-black\/20 { background-color: rgba(0,0,0,0.02) !important; }

/* Modal Backgrounds */
.light-mode .bg-slate-900\/80, 
.light-mode .bg-slate-900\/90 {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
}

.light-mode #profile-modal .glass,
.light-mode #lead-details-modal .glass {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}
