html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Header Styles */

.header {
    background-color: #b3e5fc; /* Light blue background color */
    position: fixed; /* Fix the header position */
    top: 0; /* Position it at the top of the viewport */
    width: 100%; /* Take up full width */
    z-index: 1000; /* Ensure it's on top of other content */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
    padding: 10px 20px; /* Add padding top and bottom */
    height: 80px; /* Set the height */
}

/* Basic Dropdown Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style for the dropdown button */
.dropdown-toggle {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
}

    .dropdown-toggle i {
        margin-left: 5px; /* Space between text and icon */
    }

/* Dropdown Menu */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    right: 10px;
    background-color: #eef968;
    min-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1;
    list-style: none;
    margin: 0;
    border-radius: 5px;
}

    /* Dropdown Menu Items */
    .dropdown-menu li {
        padding: 8px 15px;
    }

        .dropdown-menu li a {
            text-decoration: none;
            color: #333;
            display: block;
            padding: 8px;
        }

            .dropdown-menu li a:hover {
                background-color: #f0f0f0;
            }

/* Divider Styling */
.divider {
    border-top: 1px solid #ddd;
    margin: 8px 0;
}

/* Navigation bar Styles */
.navbar-brand {
    font-size: 24px; /* Adjust the font size of the brand */
    font-weight: bold; /* Make the brand text bold */
    padding: 0 20px; /* Add padding left and right */
}

.nav-link {
    padding: 15px 20px; /* Add padding top and bottom */
}


/* Sidebar Styles */

.sidebar {
    height: 100vh;
    padding: 15px;
}

.sidebar {
    width: 160px; /* Adjust the width as needed */
}

.sidebar {
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    width: 220px; /* Adjust the width as needed */
    z-index: 1000; /* Ensure sidebar is on top of other content */
    overflow-y: auto; /* Allow vertical scrolling if content exceeds height */
}

.bg-gray {
    background-color: #ccc; /* Use any shade of gray you prefer */
}

.sidebar .nav-link {
    color: #007bff;
    font-weight: bold;
}

    .sidebar .nav-link.active {
        color: #007bff;
        font-weight: bold;
    }

    .sidebar .nav-link:hover {
        color: #0056b3;
    }


/* side bar sub list Styles */

.main-item {
    background-color: none; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Button padding */
    cursor: pointer; /* Pointer cursor */
    display: flex; /* Flexbox layout */
    align-items: self-start; /* Center items vertically */
    justify-content: space-between; /* Space between items */
    color: #007bff;
    font-weight: bold;
}

.sub-list {
    list-style: none; /* Remove list style */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    display: none; /* Initially hide the sub-list */
}

    .sub-list li {
        background-color: none; /* Background color of list items */
        border-bottom: 1px solid #dee2e6; /* Bottom border */
    }

        .sub-list li a {
            display: block; /* Block display for links */
            padding: 10px 20px; /* Padding for links */
            color: #007bff; /* Link color */
            text-decoration: none; /* Remove underline */
        }

            .sub-list li a:hover {
                background-color: #e9ecef; /* Hover background color */
            }


/* Main Content Styles */

.main-content {
    margin-top: 80px; /* Add top margin to main content to ensure it starts below the header */
}
/* update row styles */
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -10px; /* Add negative margin to offset padding */
}

.column {
    flex: 0 0 220px; /* Adjust the width of the column as needed */
    margin-left: 10px;
    margin-bottom: 20px;
}

.well-data {
    width: 220px; /* Adjust width as needed */
    height: 80px; /* Adjust height as needed */
    border-radius: 10px; /* Rounded corners */
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px;
    margin-left: 10px; /* Add negative margin to offset padding */
    margin-bottom: 20px; /* Add negative margin to offset padding */
    font-size: 18px; /* Adjust the font size as needed */
}

    .well-data a {
        text-decoration: none;
        color: inherit;
    }

    .well-data h5 {
        margin: 0;
    }

.back-blue-1 {
    background-color: #a5c926; /* Blue */
}

.back-new-green {
    background-color: #2ecc71; /* Green */
}

.back-new-orange2 {
    background-color: #eeb355; /* Orange */
}

.back-new-gray {
    background-color: #95a5a6; /* Gray */
}

.back-new-indigo {
    background-color: #9b59b6; /* Purple */
}

.back-new-lilac {
    background-color: #e98484; /* Lilac */
}

.back-new-teal {
    background-color: #37d3b4; /* Teal */
}

/* grid styles */

.grid-label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}
