/* custom dashboard styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
    background-color: #f8fafc !important;
}

#wrapper {
    overflow-x: hidden;
    min-height: 100vh;
}

/* Sidebar styling */
#sidebar-wrapper {
    min-height: 100vh;
    width: 280px;
    transition: margin 0.25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
}

#sidebar-wrapper .list-group-item {
    transition: all 0.2s ease;
}

#sidebar-wrapper .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(4px);
}

#sidebar-wrapper .list-group-item.active {
    background-color: #0d6efd !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

/* Page content styling */
#page-content-wrapper {
    min-width: 100vw;
}

@media (min-width: 768px) {
    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }
}

/* Modern Card Customizations */
.card {
    border: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Table Style custom */
.table th {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e2e8f0;
}

.table td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #475569;
}

/* Modal and inputs */
.modal-content {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.form-select, .form-control {
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.15s ease-in-out;
}

.form-select:focus, .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

/* Autocomplete location suggestions */
#locationSuggestions {
    max-height: 250px;
    overflow-y: auto;
    z-index: 1050;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

#locationSuggestions .list-group-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.15s ease;
}

#locationSuggestions .list-group-item:hover {
    background-color: #f1f5f9;
}

/* Selected Pills */
.badge-pill-custom {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 100px;
    background-color: #e0f2fe;
    color: #0369a1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.15s ease;
}

.badge-pill-custom:hover {
    background-color: #fecaca;
    color: #991b1b;
}

/* Custom background highlights */
.bg-primary-subtle { background-color: #e0f2fe !important; color: #0369a1 !important; }
.bg-success-subtle { background-color: #dcfce7 !important; color: #15803d !important; }
.bg-info-subtle { background-color: #e0f2fe !important; color: #0369a1 !important; }
.bg-warning-subtle { background-color: #fef9c3 !important; color: #a16207 !important; }
.bg-danger-subtle { background-color: #fee2e2 !important; color: #b91c1c !important; }
