/* zoogler.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --zoogler-bg: #f2f3f8;
    --zoogler-card-bg: #ffffff;
    --zoogler-primary: #3168E8;
    --zoogler-text: #495057;
    --zoogler-muted: #888ea8;
    --zoogler-shadow: 0 0 13px 0 rgba(236,236,241,.44);
    --zoogler-border: #e8ebf3;
}

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

body.bg-gradient-primary {
    background: var(--zoogler-bg) !important;
}

/* Wrapper overrides */
#wrapper #content-wrapper {
    background-color: var(--zoogler-bg) !important;
}

/* Cards */
.card {
    background: var(--zoogler-card-bg) !important;
    border: none !important;
    box-shadow: var(--zoogler-shadow) !important;
    border-radius: 8px !important;
    backdrop-filter: none;
    color: var(--zoogler-text) !important;
}
.card-header {
    background-color: #fff !important;
    border-bottom: 1px solid var(--zoogler-border) !important;
    padding: 1.25rem 1.25rem;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    color: #212529 !important;
    font-weight: 500;
}
.text-gray-900, .text-gray-800, .text-dark {
    color: #212529 !important;
}
.text-gray-600, .text-gray-500, .text-muted {
    color: var(--zoogler-muted) !important;
}

/* Sidebar */
.sidebar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,.05) !important;
    border-right: none !important;
}
.sidebar.bg-gradient-primary {
    background: #ffffff !important;
    border-right: none !important;
}
.sidebar .nav-item .nav-link {
    color: #5b626b !important;
    font-weight: 500;
}
.sidebar .nav-item .nav-link:hover {
    color: var(--zoogler-primary) !important;
}
.sidebar .nav-item .nav-link i {
    color: #92a4bc !important;
}
.sidebar .sidebar-brand {
    color: #212529 !important;
}
.sidebar-heading {
    color: #92a4bc !important;
}
.sidebar-divider {
    border-top: 1px solid var(--zoogler-border) !important;
}

/* Topbar */
.topbar {
    background-color: #ffffff !important;
    box-shadow: 0 1px 15px rgba(0,0,0,.04) !important;
    border-bottom: none !important;
}

/* Dropdowns */
.dropdown-menu {
    background-color: #ffffff !important;
    border: none;
    box-shadow: 0 0 13px 0 rgba(236,236,241,.44);
    border-radius: 8px;
}
.dropdown-item {
    color: var(--zoogler-text) !important;
}
.dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: var(--zoogler-primary) !important;
}

/* Form Controls */
.form-control {
    background-color: #ffffff !important;
    border: 1px solid #e8ebf3 !important;
    color: #495057 !important;
    border-radius: 4px;
}
.form-control:focus {
    border-color: var(--zoogler-primary) !important;
    box-shadow: none !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--zoogler-primary) !important;
    border-color: var(--zoogler-primary) !important;
    box-shadow: 0 4px 10px rgba(49, 104, 232, 0.3) !important;
    color: #fff !important;
    border-radius: 4px !important;
}
.btn-primary:hover {
    background-color: #2856c4 !important;
    transform: translateY(-1px);
}

/* Tables */
.table {
    color: var(--zoogler-text) !important;
}
.table td, .table th {
    border-top: 1px solid var(--zoogler-border) !important;
}
.table thead th {
    border-bottom: 2px solid var(--zoogler-border) !important;
    color: #333;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    color: var(--zoogler-text) !important;
}
.page-item.active .page-link {
    background-color: var(--zoogler-primary) !important;
    border-color: var(--zoogler-primary) !important;
}
.page-link {
    background-color: #fff !important;
    border-color: var(--zoogler-border) !important;
    color: var(--zoogler-text) !important;
}
