/**
 * OnePage Theme - Dark Mode (Optional)
 */

/* Dark Mode Toggle (Optional Feature) */
body.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .card {
    background: #2a2a2a;
    color: #e0e0e0;
}

body.dark-mode .card-header {
    background: #333;
    color: #fff;
}

body.dark-mode .table {
    background: #2a2a2a;
    color: #e0e0e0;
}

body.dark-mode .table thead th {
    border-bottom-color: #444;
}

body.dark-mode .table-hover tbody tr:hover {
    background-color: #333;
}

body.dark-mode .form-control {
    background: #333;
    color: #e0e0e0;
    border-color: #444;
}

body.dark-mode .form-control:focus {
    background: #3a3a3a;
    border-color: #007bff;
}

body.dark-mode .navbar {
    background: #2a2a2a !important;
}

body.dark-mode .alert {
    background: #333;
    color: #e0e0e0;
}

body.dark-mode .footer {
    background: #1a1a1a !important;
}

/* Dark Mode Toggle Button (if you want to add one) */
.dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 10px 15px;
    border-radius: 50px;
    background: #333;
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background: #444;
    transform: scale(1.1);
}

