@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bs-primary: #696cff; /* Sneat primary */
    --bs-secondary: #8592a3;
    --bs-success: #71dd37;
    --bs-info: #03c3ec;
    --bs-warning: #ffab00;
    --bs-danger: #ff3e1d;
    --bs-body-bg: #f5f5f9;
    --card-bg: #ffffff;
    --text-primary: #566a7f;
    --text-heading: #32475c;
}

body {
    font-family: 'Outfit', sans-serif !important;
    background-color: var(--bs-body-bg) !important;
    color: var(--text-primary) !important;
}

/* UI Enhancement */
.card {
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: 0 0.125rem 0.25rem rgba(161, 172, 184, 0.4) !important;
    transition: all 0.25s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(161, 172, 184, 0.45) !important;
    transform: translateY(-2px);
}

.card-header {
    background: transparent !important;
    border-bottom: 0px solid rgba(0,0,0,0.05) !important;
    padding-top: 1.5rem !important;
}

.card-header h4, .card-header h5, .card-header h6 {
    color: var(--text-heading) !important;
    font-weight: 800 !important;
}

/* Sidebar Customization */
.bg-menu-theme {
    background-color: #ffffff !important;
    box-shadow: 0 0.125rem 0.375rem 0 rgba(161, 172, 184, 0.12) !important;
}

.menu-inner > .menu-item.active > .menu-link {
    background-color: rgba(105, 108, 255, 0.1) !important;
    color: var(--bs-primary) !important;
}

.menu-inner > .menu-item.active:before {
    background-color: var(--bs-primary) !important;
}

.menu-link {
    font-weight: 500 !important;
}

/* Navbar */
.layout-navbar {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 0.375rem 0.25rem rgba(161, 172, 184, 0.15) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(105, 108, 255, 0.4) !important;
    border-radius: 0.5rem !important;
}

.btn-primary:hover {
    box-shadow: 0 0.25rem 0.5rem 0 rgba(105, 108, 255, 0.4) !important;
}

/* Tables */
.table thead th {
    background-color: #f8f9fa !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.table td {
    padding: 1rem 0.5rem !important;
}

/* Forms */
.form-control, .form-select {
    border-radius: 0.5rem !important;
    padding: 0.6rem 1rem !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 0.15rem rgba(105, 108, 255, 0.15) !important;
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 20px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.content-wrapper {
    animation: fadeInUp 0.4s ease-out;
}

/* Badges with Soft Colors */
.badge {
    text-transform: inherit;
    font-weight: 600;
}
