/* Premium 5G Leadership Dashboard Styles - Light/Elegant Theme (Refined) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.premium-dashboard-scope {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.5;
}

/* Premium Light Card (Neumorphic / Soft Shadow) */
.premium-dashboard-scope .premium-glass-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.03), 0 0 3px rgba(0,0,0,0.02);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-dashboard-scope .premium-glass-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 4px 10px -2px rgba(0,0,0,0.03);
}

.premium-dashboard-scope .premium-glass-card .card-body {
    padding: 1.25rem; /* Reduced from 1.5rem for tighter layout */
}

/* Reduced card header sizes */
.premium-dashboard-scope .premium-glass-card .card-header {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.25rem; /* Reduced padding */
    color: #0f172a;
}
.premium-dashboard-scope .premium-glass-card .card-header .fw-bold {
    font-size: 0.95rem; /* Normalized header font size */
    letter-spacing: 0.01em;
}

/* Typography Overrides inside scope */
.premium-dashboard-scope h1, 
.premium-dashboard-scope h2, 
.premium-dashboard-scope h3, 
.premium-dashboard-scope .h3,
.premium-dashboard-scope .display-6 {
    color: #0f172a !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.premium-dashboard-scope .text-white {
    color: #0f172a !important; /* Override dark mode whites */
}

.premium-dashboard-scope .text-secondary {
    color: #64748b !important;
}

.premium-dashboard-scope .text-light {
    color: #475569 !important;
}

/* Form labels - Title Case, Readable */
.premium-dashboard-scope .form-label {
    font-size: 0.8rem !important;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.25rem;
}

/* Bento Grid */
.bento-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.bento-item {
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
}
.bento-item > .premium-glass-card {
    height: 100%;
    margin-bottom: 0;
}

/* Hero Banner - Clean Light Gradient */
.premium-hero-banner {
    background: linear-gradient(120deg, #fdfbfb 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) inset;
    position: relative;
    overflow: hidden;
}

.premium-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Goal Stepper - Widened and proportional */
.premium-dashboard-scope .goal-stepper {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Stretch to normalize height */
    width: 100%;
}

.premium-dashboard-scope .goal-stepper-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 0.25rem;
}

.premium-dashboard-scope .goal-stepper-step {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.75rem 0.5rem; /* Better proportions */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-dashboard-scope .goal-stepper-step:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.premium-dashboard-scope .goal-stepper-step .step-index {
    background: #f1f5f9 !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0;
    box-shadow: none !important;
    width: 28px !important; 
    height: 28px !important; /* Slightly smaller circle */
    font-size: 0.85rem;
}

.premium-dashboard-scope .goal-stepper-step.is-done .step-index {
    background: #0ea5e9 !important; /* Elegant Sky Blue */
    color: #ffffff !important;
    border: none;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25) !important;
}

.premium-dashboard-scope .goal-stepper-step .step-label {
    font-size: 0.8rem !important; /* Smaller label */
    margin-top: 0.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.premium-dashboard-scope .goal-stepper-arrow {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    padding-bottom: 2rem; /* Keep arrow aligned */
}

/* Stepper Badge - Made larger and readable */
.premium-dashboard-scope .stepper-badge {
    font-size: 0.75rem !important; /* Increased readability */
    padding: 0.2rem 0.5rem !important;
    border-radius: 4px;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Form controls */
.premium-dashboard-scope .form-control,
.premium-dashboard-scope .form-select {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02) inset;
    padding: 0.4rem 0.75rem; /* Refined padding */
    font-size: 0.875rem;
}
.premium-dashboard-scope .form-control:focus,
.premium-dashboard-scope .form-select:focus {
    background-color: #ffffff;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.15);
    color: #1e293b;
}

/* Custom Buttons */
.premium-dashboard-scope .btn-primary {
    background: #0ea5e9; 
    border: none;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
}
.premium-dashboard-scope .btn-primary:hover {
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    color: #ffffff;
}

/* Insight Gradients & Progress Bars */
.premium-dashboard-scope .progress {
    background-color: #f1f5f9 !important;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
/* Thicker AI Progress bars */
.premium-dashboard-scope .progress-thick {
    height: 10px !important; 
}
.premium-dashboard-scope .progress-bar {
    border-radius: 999px;
}
.premium-dashboard-scope .bg-blue { background: #3b82f6 !important; box-shadow: none !important; }
.premium-dashboard-scope .bg-cyan { background: #0ea5e9 !important; box-shadow: none !important; }
.premium-dashboard-scope .bg-purple { background: #8b5cf6 !important; box-shadow: none !important; }
.premium-dashboard-scope .bg-success { background: #10b981 !important; box-shadow: none !important; }
.premium-dashboard-scope .text-info { color: #0ea5e9 !important; }
.premium-dashboard-scope .bg-info { background: #0ea5e9 !important; }
.premium-dashboard-scope .bg-dark { background-color: #f8fafc !important; border-color: #e2e8f0 !important; color: #1e293b !important; }

/* Sub-card list items (Tracking History Table) */
.premium-list-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px; /* Slightly squarer for lists */
    padding: 0.75rem 1rem; /* Tighter padding */
    margin-bottom: 0.5rem; /* Reduced vertical margin */
    transition: all 0.2s ease;
}
.premium-list-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    background: #f8fafc; /* Slight highlight on hover */
}

/* Target display specific overrides */
.target-display-value {
    font-size: 3.5rem; /* Huge number */
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #0f172a;
}
.target-display-unit {
    font-size: 1rem; /* Smaller unit */
    font-weight: 500;
    color: #64748b;
    margin-left: 0.25rem;
}
.target-date {
    font-size: 0.9rem; /* Increased readability */
    font-weight: 500;
    color: #475569;
}

/* Override utility classes used for dark mode backgrounds */
.premium-dashboard-scope .bg-dark.bg-opacity-25 { background: #f8fafc !important; }
.premium-dashboard-scope .border-white.border-opacity-10 { border-color: #e2e8f0 !important; }
.premium-dashboard-scope [style*="background: rgba(255,255,255,0.03)"],
.premium-dashboard-scope [style*="background: rgba(255,255,255,0.02)"],
.premium-dashboard-scope [style*="background: rgba(0,0,0,0.2)"],
.premium-dashboard-scope [style*="background: rgba(0,0,0,0.1)"] {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}
.premium-dashboard-scope [style*="background: rgba(255,255,255,0.05)"] {
    background: #f1f5f9 !important;
}

.premium-dashboard-scope .avatar {
    box-shadow: none !important;
}

/* Gift Spotlight — achievement + talent/strategy pairs */
.premium-dashboard-scope .spotlight-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.premium-dashboard-scope .spotlight-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.07);
}
.premium-dashboard-scope .spotlight-achievement-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}
.premium-dashboard-scope .spotlight-achievement-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
}
.premium-dashboard-scope .spotlight-column-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.6rem;
}
.premium-dashboard-scope .spotlight-talent-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.5rem;
}
.premium-dashboard-scope .spotlight-talent-chip:last-child {
    margin-bottom: 0;
}
.premium-dashboard-scope .spotlight-talent-chip .badge {
    font-weight: 600;
}
.premium-dashboard-scope .spotlight-talent-chip .spotlight-strategy-text {
    color: #475569;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    overflow-wrap: anywhere;
}
.premium-dashboard-scope .spotlight-row textarea {
    resize: vertical;
    min-height: 38px;
}
