/* General Styling */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

/* Card Styling */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button Styling */
.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Logout Button */
.btn-danger {
    background-color: #dc3545;
}

.btn-danger:hover {
    background-color: #a71d2a;
}

/* Form Elements */
.form-group {
    margin-bottom: 1rem;
}

/*  NEW ADDITION */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar Styling */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #ffffff !important;
}

/* Dropdown Styling */
.navbar-nav .dropdown-menu {
    background-color: #343a40; /* Dark background */
    border: none;
    border-radius: 5px;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: #ffffff; /* White text */
    font-weight: 500;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #495057; /* Slightly lighter background */
}

/* Responsive Navbar Toggler */
.navbar-toggler {
    border: none;
    outline: none;
}

/* Table Styling */
.table {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button Styling */
.btn {
    font-weight: 600;
    border-radius: 5px;
}

/* Form Styling */
input[type="date"],
input[type="time"],
select,
input[type="email"],
input[type="password"],
input[type="text"] {
    border-radius: 5px;
    border: 1px solid #ced4da;
}

/* Footer Styling */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Fix Bootstrap Dropdown Not Opening */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.3s ease-in-out;
}

/* Active Link Highlight */
.navbar-nav .nav-item .active {
    font-weight: bold;
    text-decoration: underline;
}
