/* General Body Styling */
body {
    background-color: #000000;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Updated for modern look */
}

/* Link Styling */
a {
    color: #82b1ff;
    transition: color 0.3s ease;
}

a:hover {
    color: #bbdefb;
}

/* Card Styling */
.card {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #555050;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.card-title {
    color: #ffffff;
}

/* Table Styling */
.table {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border-collapse: collapse;
}

.table thead th {
    background-color: #333;
    color: #ffffff;
}

.table tbody tr {
    background-color: #2a2a2a;
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: #3a3a3a; /* Slightly lighter on hover */
}

/* Button Styling */
.btn-primary {
    background-color: #2979ff;
    border-color: #2979ff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #1565c0;
    transform: translateY(-2px); /* Lifts the button on hover */
}

/* Sidebar Styling */
.page-sidebar {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

.page-sidebar a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.page-sidebar a:hover {
    color: #82b1ff;
}

/* Navbar Styling */
.page-header {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border-bottom: 1px solid #333;
}

.page-header .navbar-nav > li > a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.page-header .navbar-nav > li > a:hover {
    color: #82b1ff;
}

/* Stats Widget */
.stats-widget .stats-number {
    color: #e0e0e0;
}

.stats-widget .stats-info {
    color: #9e9e9e; /* Slightly lighter for differentiation */
}

/* Breadcrumb and Titles */
.page-title {
    background: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #555050;
}

.breadcrumb-header {
    color: #ffffff; /* Lighter for improved readability */
}

/* Inner Page Background */
.page-inner {
    background: #0d0d0d; /* Darker for better contrast */
}

/* Sidebar Adjustments */
.sidebar {
    background-color: transparent !important;
}

.nav-pills .nav-link.active {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
    border-radius: 5px; /* Soft rounded corners */
    transition: background-color 0.3s ease;
}

/* Additional Styles */
.logo-box {
    background-color: #1e1e1e;
}

.page-header .navbar-default {
    background-color: #1e1e1e;
}

.login-page {
    width: 100%;
    height: 100%;
    background: url("../img/dark-mode-picture.jpg") no-repeat center center fixed;
    background-size: cover;
    padding: 0px; }

.login-box {
    width: 300px;
    height: 100vh;
    background: #1e1e1e;
    padding: 35px;
    color: #1e1e1e;
    background: #1e1e1e;
    }
/* label */
label {
    font-weight: 400;
    color: #f3f3f3; 
}

.login-title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 35px; 
}
      
.login-title span {
    margin-left: 5px;
    font-size: 12px;
    opacity: .7; 
}

.forgot-link {
    margin-top: 10px;
    color: red;
    display: inline;
    
}

.server-load .server-stat p {
    font-weight: 600;
    font-size: 16px;
    color: rgb(247, 242, 242);
    margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000000 !important;}

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td{
    border-top: none !important;
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #ffffff !important;
}

.page-footer {
    position: absolute;
    bottom: 23px;
    font-size: 13px;
    color: #fcfcfc !important;
  }