/* Expert Glass Design System - Administrative Global Styles 
   Centralized standardized attributes mapped for tables, inputs, labels, and glass components.
*/

.expert-label { 
    font-size: 0.65rem; 
    font-weight: 850; 
    color: #94a3b8; 
    text-transform: uppercase; 
    letter-spacing: 1.2px; 
    display: block;
}

.expert-search-box { 
    position: relative; 
    max-width: 350px; 
    width: 100%;
}
.expert-search-box i { 
    position: absolute; 
    left: 0.95rem; 
    top: 50%; 
    transform: translateY(-50%); 
    color: #94a3b8; 
    font-size: 0.85rem; 
}
.expert-search-box input { 
    width: 100%; 
    padding: 0.55rem 1rem 0.55rem 2.25rem; 
    background: white; 
    border: 1px solid #e2e8f0; 
    border-radius: 12px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    transition: all 0.2s; 
}
.expert-search-box input:focus { 
    outline: none; 
    border-color: var(--brand-primary, #6366f1); 
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Typography & Weights */
.fw-850 { font-weight: 850 !important; }
.fw-950 { font-weight: 950 !important; }
.x-small { font-size: 0.7rem !important; }
.tracking-widest { letter-spacing: 0.1em !important; }

/* Transitions & Effects */
.transition-all { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; }
.hover-translate-up:hover { transform: translateY(-5px) !important; }
.hover-bg-light:hover { background-color: #f8fafc !important; }

/* Dashboard & Cards */
.expert-card {
    border: none;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    overflow: hidden;
}

/* Profile Specific */
.avatar-container { position: relative; width: 140px; height: 140px; }
.avatar-frame { 
    width: 140px; 
    height: 140px; 
    border-radius: 40px; 
    background: #fff; 
    border: 2px solid #e2e8f0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 3.5rem; 
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    transition: all 0.3s;
}
.avatar-container:hover .avatar-frame { transform: scale(1.05) rotate(-3deg); border-color: #6366f1; }
.avatar-upload-trigger { 
    position: absolute; 
    bottom: -5px; 
    right: -5px; 
    width: 44px; 
    height: 44px; 
    background: #6366f1; 
    color: #fff; 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    border: 4px solid #fff; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    transition: all 0.3s; 
}
.avatar-upload-trigger:hover { transform: scale(1.1); background: #4338ca; }
