/* Body styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Pagination */
.pagination{
        justify-content: center;
    }

/* Navbar styling */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 5px;
    display: flex;
}

.nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

/* Custom styling for logo unaki */
.logo2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 50px;
    margin-right: 10px;
}

.logo2 img {
    width: 45;
    margin-right: 10px;
}

/* Sidebar styling */
#sidebar {
    width: 250px;
    height: 90%;
    position: fixed;
    top: 56px;
    left: 0;
    background-color: #629584;
    padding-top: 1rem;
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
}

#sidebar .nav-link {
    color: #ddd;
    padding: 10px;
}

#sidebar .nav-link:hover {
    background-color: #96b6ce;
    color: #fff;
}

/* Submenu styling */
#sidebar ul ul {
    padding-left: 20px;
}

#sidebar ul ul .nav-link {
    padding-left: 30px;
}

/* Styling for dropdown menu */
.dropdown-menu {
    width: auto; /* Allows the menu to adapt to its content */
    min-width: 300px; /* Set a minimum width */
}
/* Customize padding and text alignment */
.dropdown-item {
    padding: 10px 20px; /* Increase padding for readability */
    font-size: 1rem; /* Adjust font size */
}

.dropdown-header {
    background-color: #f8f9fa; /* Lighten header background */
    padding: 10px;
}

/* Main content styling */
#content {
    padding-top: 80px;
    padding-bottom: 50px;
    padding-left: 250px;
    transition: margin-left 0.3s ease;
}
#content.active {
    margin-left: 0;
}
.container {
    padding-bottom: 2rem;
}
.btn {
    border-radius: 20px;
}
.table-responsive {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 400px; /* Set height as per your requirement */
}



/* Responsive styling */
@media (max-width: 768px) {
#sidebar {
    left: -250px;
}

#sidebar.active {
    left: 0;
}

#content {
    padding-left: 15px;
}

.navbar-toggler {
    margin-right: auto;
}
.card-header h4 {
    display: flex;
    align-items: center;
}

.card-header h4 i {
    margin-right: 10px;
}
}