/* =================================================================ar
 * Theme: Obsidian Gold & Emerald Executive
 * File: assets/css/style.css
 * ================================================================= */

 body {
    background-color: #0b0f19;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Layout & Container */
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    background-color: #0b0f19;
}

/* Panel & Card Design */
.panel {
    background: #131b2e;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 25px;
}

.panel-heading {
    background: #131b2e !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    color: #e5c158 !important;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-body {
    padding: 20px;
}

/* Typography & Accents */
.gold-accent {
    color: #e5c158 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Buttons */
.btn-gold {
    background-color: #e5c158;
    color: #0b0f19;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #d4af37;
    color: #0b0f19;
    box-shadow: 0 0 12px rgba(229, 193, 88, 0.4);
}

/* Tables & DataTables Styling */
table.dataTable {
    color: #ffffff !important;
    background-color: transparent !important;
}

table.dataTable tbody tr {
    background-color: #131b2e !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

table.dataTable tbody tr:hover {
    background-color: #1a2540 !important;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    background-color: #0b0f19 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 5px 10px;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: #94a3b8 !important;
    margin-top: 15px;
}

/* Responsive Mobile Tweaks */
@media (max-width: 768px) {
    #content {
        padding: 10px;
    }
    .panel-body {
        padding: 12px;
    }
}
/* Responsive Mobile Sidebar Fix */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        position: fixed;
        z-index: 999;
        height: 100%;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100% !important;
        padding: 10px !important;
    }
}