/********** Template CSS **********/

:root {
    --primary: #009CFF;
    /* Ana renk: Parlak mavi - SABİT */
    --primary-rgb: 0, 153, 255;
    /* Ana renk RGB değerleri - SABİT */
    --primary-hover: rgba(0, 153, 255, 0.8);
    /* Ana renk hover durumu - SABİT */
    --text-color: #ffffff;
    /* Yazı rengi */
    --secondary: #191C24;
    /* Koyu lacivert - panel arkaplanı için */
    --light: #6C7293;
    /* Daha açık gri-mavi tonu */
    --dark: #000000;
    /* Çok koyu lacivert */
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color: var(--primary) !important;
}

.back-to-top:hover {
    background-color: var(--primary) !important;
    opacity: 0.8;
}


/*** Spinner ***/

#spinner,
#spinner.show {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -9999 !important;
    pointer-events: none !important;
}

body {
    overflow: auto !important;
    height: auto !important;
    width: auto !important;
    color: var(--text-color);
    background-color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    opacity: 0.8;
}


/*** Button ***/


/* Buton hover renkleri mavi tema için düzeltme */

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    opacity: 0.8;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-light:hover {
    color: var(--primary);
}

.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 999;
}

.sidebar .navbar-brand {
    color: var(--primary) !important;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: var(--dark);
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }
    .sidebar.open {
        margin-left: -250px;
    }
    .content {
        width: calc(100% - 250px);
    }
    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100vh;
        z-index: 1000;
        background-color: var(--secondary);
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar.open {
        left: 0;
    }
    
    .content {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    /* Sidebar toggle button mobilde görünür */
    .sidebar-toggler {
        display: block !important;
        color: var(--primary) !important;
        font-size: 1.2rem;
        padding: 0.5rem;
        background: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .sidebar-toggler:hover {
        color: var(--light) !important;
        background-color: rgba(var(--primary-rgb), 0.1);
        border-radius: 4px;
    }
    
    /* Sidebar overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: block;
    }
    
    /* Navbar düzenlemeleri mobilde */
    .navbar {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Body overflow kontrolü */
    body.sidebar-open {
        overflow: hidden;
    }
}

/* Desktop için sidebar toggle gizle */
@media (min-width: 992px) {
    .sidebar-toggler {
        display: none !important;
    }
}


/*** Navbar ***/

.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--light);
    font-weight: 500;
    border-left: 3px solid var(--secondary);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--dark);
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--secondary);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    color: var(--light);
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--light);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.content .navbar .dropdown-item {
    color: var(--light);
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/

.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}


/*** Color Theme Customizer - KALDIRILDI ***/

/* Tema ayarları kaldırıldı - sadece ana mavi renk kullanılacak */


/*** Icon and Text Colors ***/


/* İkonlar için renk tanımlaması */

.fa-cog,
.fa-bell,
.fa-bars,
.fa-user-edit,
.fa-users,
.fa-search,
.fa-envelope,
.fa-chart-line,
.fa-chart-bar,
.fa-chart-pie,
.fa-chart-area,
.fa-clock,
.fa-calendar,
.fas,
.far,
.fa,
.fab {
    color: var(--primary) !important;
}


/*** Sidebar Menu Text Colors ***/


/* Sidebar'daki yazılar için özel renk ayarları */

.sidebar .nav-link span,
.sidebar .dropdown-item span,
.sidebar .dropdown-item,
.sidebar .nav-link:not(.text-primary),
.sidebar .navbar-nav h6,
.sidebar .ms-3 span {
    color: var(--text-color) !important;
}


/* Kullanıcı bilgileri, başlıklar */

.sidebar .navbar-nav h6,
.sidebar .ms-3 span {
    color: var(--text-color) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-primary i,
.text-primary .fa,
.text-primary .fas,
.text-primary .far,
.text-primary .fab {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}


/*** Footer ***/

.nexus-name {
    color: var(--primary) !important;
    font-weight: bold;
    text-decoration: none !important;
}

.nexus-name:hover {
    opacity: 0.8;
    text-decoration: none !important;
}

.bg-secondary.rounded-top {
    background: var(--secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-secondary.rounded-top p,
.bg-secondary.rounded-top div {
    color: var(--light) !important;
}

footer a,
.container-fluid a:not(.btn) {
    color: var(--primary) !important;
    text-decoration: none;
}

footer a:hover,
.container-fluid a:not(.btn):hover {
    text-decoration: underline;
}

.content .navbar .sidebar-toggler {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.content .navbar .sidebar-toggler i {
    color: var(--primary) !important;
}


/*** Defaults ***/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
}

p,
span,
div.text {
    color: var(--text-color);
}


/*** Tables ***/

.table,
th,
td {
    color: var(--text-color);
}


/*** Cards ***/

.card-title,
.card-text {
    color: var(--text-color);
}


/*** Charts & Graphs ***/

.chart-title,
.chart-label {
    color: var(--text-color) !important;
}

canvas[class^="chartjs"] {
    /* Grafik elementlerinin CSS'i - bunların rengi --primary tarafından JS'de ayarlanıyor */
}

.chart-legend {
    color: var(--text-color) !important;
}


/*** Sidebar Menu ***/

.sidebar .nav-item .nav-link,
.sidebar .navbar-nav .nav-item a,
.sidebar .dropdown-menu .dropdown-item,
.sidebar .navbar .dropdown-menu a,
.sidebar .navbar-nav a {
    /* Silindi */
}

.sidebar .nav-link span,
.sidebar .dropdown-item span {
    /* Silindi */
}

.sidebar .navbar .dropdown-toggle::after {
    /* Silindi */
}

.sidebar .dropdown-menu.bg-transparent .dropdown-item {
    /* Silindi */
}

.sidebar .navbar-nav h6,
.sidebar .navbar-nav span,
.sidebar .ms-3 span {
    /* Silindi */
}


/* Yeni, daha spesifik kurallar */

.sidebar .nav-link span,
.sidebar .dropdown-item span,
.sidebar .navbar-nav h6,
.sidebar .ms-3 span {
    color: var(--text-color) !important;
}


/*** Sidebar Menu Colors ***/


/* Sidebar metin öğeleri için color override */

.sidebar .nav-link,
.sidebar .dropdown-item {
    color: var(--text-color) !important;
}


/* İkonlar için ana renk korunur */

.sidebar .nav-link i,
.sidebar .dropdown-item i {
    color: var(--primary) !important;
}


/* Özel bildirim stili */

.notification-area {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 80%;
    z-index: 9999;
}

.notification {
    background-color: var(--secondary);
    color: var(--text-color, var(--light));
    border-left: 5px solid var(--primary);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 400px;
    overflow-wrap: break-word;
    animation: slide-in 0.3s ease-out;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-warning {
    border-left-color: #ffc107;
}

.notification-info {
    border-left-color: #17a2b8;
}

.notification-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: var(--light);
    opacity: 0.7;
    font-size: 20px;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Silme onayı modal stili */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-container {
    background-color: var(--secondary) !important;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--secondary) !important;
}

.modal-header h5 {
    margin: 0;
    color: var(--text-color);
    font-size: 18px;
}

.modal-close {
    font-size: 24px;
    color: var(--light);
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}

.modal-content {
    padding: 20px;
    color: var(--text-color);
    background-color: var(--secondary) !important;
}

.announcement-preview {
    margin-top: 15px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border-left: 3px solid var(--primary);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--secondary) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Çoklu oturum uyarı penceresi - kilitleyici versiyon */

.session-blocking-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    /* Diğer tüm modalların üzerinde */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(5px);
    user-select: none;
    pointer-events: all !important;
}

.warning-container {
    background-color: var(--secondary);
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 50px rgba(22, 114, 235, 0.8);
    border: 3px solid var(--primary);
    pointer-events: all !important;
}

.warning-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: shake 2s cubic-bezier(.36, .07, .19, .97) 2s infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.warning-container h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-container p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.locked-message {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(28, 212, 245, 0.2);
    border-radius: 5px;
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}


/* Progress Bar */

.progress-bar {
    background-color: var(--primary) !important;
}


/* Spinner rengi */

.spinner-border.text-primary {
    color: var(--primary) !important;
}


/* Alert renkler */

.alert-primary {
    background-color: rgba(var(--primary-rgb), 0.1) !important;
    border-color: var(--primary) !important;
}

.alert-primary i {
    color: var(--primary) !important;
}


/* Farklı sayfalardaki renk tutarsızlıklarını düzeltmek için */

.text-primary,
a.text-primary:hover,
button.text-primary:hover,
.btn-link.text-primary {
    color: var(--primary) !important;
}


/* Chart.js grafik renkleri için - red override */


/* main.js'de tanımlı ancak sayfaya özel renk değişimlerini CSS ile de override edelim */

[style*="#EB1616"] {
    color: var(--primary) !important;
}

[style*="#eb1616"] {
    color: var(--primary) !important;
}

[style*="rgb(235, 22, 22)"] {
    color: var(--primary) !important;
}

[style*="rgba(235, 22, 22"] {
    color: rgba(var(--primary-rgb), 0.7) !important;
}


/* Bildirim Kutusu */

.notification-area .notification {
    border-left-color: var(--primary) !important;
}


/* Tablo Hover Renkleri */

.table-hover tbody tr:hover {
    background-color: rgba(var(--primary-rgb), 0.05) !important;
}


/* Vurgu Renkleri */

::selection {
    background-color: rgba(var(--primary-rgb), 0.3) !important;
    color: white;
}


/* Input Focus */

.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25) !important;
}


/* Button-warning */

.btn-warning {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-warning:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    opacity: 0.8;
}


/* Button-danger hard coded kırmızı değerleri değiştirelim */

.btn-danger {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-danger:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    opacity: 0.8;
}

.color-option {
    margin-bottom: 15px;
}

.color-option label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


/* Ön tanımlı tema renk kombinasyonları */

.theme-color[data-index="0"] {
    background-color: var(--primary);
}


/* Mavi */

.theme-color[data-index="1"] {
    background-color: #00c16e;
}


/* Yeşil */

.theme-color[data-index="2"] {
    background-color: #9b59b6;
}


/* Mor */

.theme-color[data-index="3"] {
    background-color: #e74c3c;
}


/* Kırmızı */

.theme-color[data-index="4"] {
    background-color: #ff9a00;
}


/* Turuncu */


/* Ön tanımlı yazı renk kombinasyonları */

.text-color[data-index="0"] {
    background-color: #ffffff;
}


/* Beyaz */

.text-color[data-index="1"] {
    background-color: #e0e0e0;
}


/* Açık Gri */

.text-color[data-index="2"] {
    background-color: #fff959;
}


/* Sarı */

.text-color[data-index="3"] {
    background-color: #add8e6;
}


/* Açık Mavi */

.text-color[data-index="4"] {
    background-color: #90ee90;
}


/* Açık Yeşil */


/*** Specific elements for Index page ***/

#activeUserCounter,
#activeUserCount,
#indexActiveUserCount,
.counter-number,
.counter-text,
.stat-number,
.stat-text {
    color: var(--text-color) !important;
}

.counter-box i,
.stat-box i {
    color: var(--primary) !important;
}


/*** Special overrides to ensure color changes take effect ***/


/* Ana tema renginin index ve navbarda tam görünmesi için gerekli override'lar */

.nexus-name,
.sidebar .navbar-brand,
.dropdown-toggle::after,
.sidebar-toggler i {
    color: var(--primary) !important;
}


/* Menü öğeleri aktif durumu */

.navbar-nav .nav-item .active i,
.navbar-nav .nav-item .active span {
    color: var(--primary) !important;
}


/* NEXUS Logo ve Marka */

.navbar-brand.fw-bold,
#nexus-logo,
.nexus-name {
    color: var(--primary) !important;
    font-weight: bold;
}


/* Top-Nav ve Sidebar Stilleri */

.navbar {
    background-color: var(--secondary) !important;
}

.sidebar {
    background-color: var(--secondary) !important;
}


/* Navbar Marka ve Logo */

.navbar .navbar-brand {
    color: var(--primary) !important;
}


/* Menü ikonları ve yazıları */

.sidebar .nav-link i,
.navbar .nav-link i,
.dropdown-toggle i,
.sidebar-toggler i,
.fa-cog,
.fa-bell,
.fa-bars {
    color: var(--primary) !important;
}


/* İstatistik kutularında ikonlar */

.counter-box i,
.stat-box i {
    color: var(--primary) !important;
}


/* Progress Bar ve Grafik Renkleri */

.progress-bar,
.chart-color-primary {
    background-color: var(--primary) !important;
}


/* Bildirim ve uyarı kutuları */

.notification,
.alert-primary {
    border-left-color: var(--primary) !important;
}


/* Formlar ve giriş alanları */

.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25) !important;
}


/* Butonlar */

.btn-primary,
.btn-danger,
.btn-warning {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover,
.btn-danger:hover,
.btn-warning:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    opacity: 0.8;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}


/* İndex sayfası sayaçları */

.counter-number,
.stat-number {
    color: var(--text-color) !important;
}

/*** Dashboard Cards ***/
.dashboard-card {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.dashboard-card .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 50%;
    margin-bottom: 15px;
}

.dashboard-card .icon i {
    font-size: 24px;
    color: var(--primary);
}

.dashboard-card h3 {
    font-size: 24px;
    color: var(--light);
    margin-bottom: 5px;
}

.dashboard-card p {
    color: var(--light);
    margin-bottom: 0;
}

/*** Charts ***/
.chart-container {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.chart-title {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

/*** GET-POST Chart ***/
#get-post-chart {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
    height: 300px;
}

/*** Sales Chart ***/
#worldwide-sales {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
    height: 300px;
}

/*** Revenue Chart ***/
#salse-revenue {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
    height: 300px;
}

/*** Recent Sales ***/
.recent-sales {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
}

.recent-sales .table thead th {
    color: var(--light);
    font-weight: 500;
    border-bottom: 2px solid var(--dark);
}

.recent-sales .table tbody td {
    color: var(--light);
    border-color: var(--dark);
    vertical-align: middle;
}

/*** Widgets ***/
.widget {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.widget-title {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

/*** User Activity ***/
.user-activity {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
}

.user-activity .table thead th {
    color: var(--light);
    font-weight: 500;
    border-bottom: 2px solid var(--dark);
}

.user-activity .table tbody td {
    color: var(--light);
    border-color: var(--dark);
    vertical-align: middle;
}

/*** Messages ***/
.message {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.message-title {
    color: var(--light);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.message-content {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary);
}

.message-content:last-child {
    margin-bottom: 0;
}

.message-content p {
    color: var(--light);
    margin-bottom: 5px;
}

.message-content small {
    color: var(--light);
    opacity: 0.7;
}

/*** Calendar ***/
#calender {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
}