
body {
    

    height: 100vh; /* Full viewport height */
    margin: 0;
    background-color: #e9ecef; /* Light background color for the page */
}

/* Enable horizontal scrolling */
.horizontal-scroll {
    overflow-x: auto; /* Allows horizontal scrolling */
    white-space: nowrap; /* Prevents wrapping of content */
}

/* Optional: Style for the container to manage width */
.scroll-container {
    max-width: 100%; /* Ensure it doesn't exceed the viewport width */
}
/* General form styles */
form {
    background-color: #f8f9fa; /* Light gray background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form header */
form h2 {
    margin-bottom: 20px;
}

/* Form controls */
.form-select,
.form-control {
    border-radius: 4px;
    box-shadow: none; /* Remove default shadow for consistency */
}

/* Submit button */
.btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
}

/* Pagination styling */
.pagination {
    margin-top: 20px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    border-radius: 4px;
}

/* Table styling */
.table {
    margin-top: 20px;
}

.table th, .table td {
    
    vertical-align: middle;
}

/* Error message styling */
.alert {
    margin-bottom: 20px;
    border-radius: 4px;
}
.navbar-nav .active{
    border: 1px solid rgb(0,163,196);
    border-radius: 5px;
    background-color: rgb(11,171,204);
}

.navbar-nav .active a{
    color: #fff;
    padding: 7px 20px!important;
}