/* Custom Styles for Igloo Talent CRM V2 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Custom Scrollbar for Sidebar and Table */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Sidebar Specific Styles */
.sidebar {
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
}
.sidebar-link {
    transition: all 0.2s ease-in-out;
}
.sidebar-link:hover, .sidebar-link.active {
    background-color: #f0f9ff;
    color: #0284c7;
}
.sidebar-link.active {
    border-right: 3px solid #0284c7;
    font-weight: 600;
}

/* Table Enhancements */
.talent-table tbody tr {
    transition: background-color 0.15s ease-in-out;
}
.talent-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Print Styles (PDF Export Optimization) */
@media print {
    body {
        background: #ffffff;
    }
    .no-print {
        display: none !important;
    }
    .pdf-container {
        padding: 20px !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
}
