/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c084fc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}

/* Table container styling */
.table-container {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-radius: 0.75rem;
}

/* Input fields focus transition */
input,
select,
textarea {
    transition: all 0.3s ease;
}

/* Glassmorphism for floating elements (if used later) */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Smooth row hover color for tables */
tbody tr:hover {
    background-color: #fbf8ff !important;
}

/* Sidebar link active state enhancement */
nav a.bg-primary {
    background: linear-gradient(135deg, #6A0DAD 0%, #9026d3 100%) !important;
}

nav a.bg-primary.bg-opacity-10 {
    background-color: rgba(106, 13, 173, 0.05) !important;
}