/* Global Body Style */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    font-size: 15px;
    /* Star White */
}


/* Header Style */

.navbar {
    /* background-color: #000033; */
    background-color: #1170bc;
    color: #FFFFFF;
    padding: 20px;
    /* text-align: center; */
}

.navbar a {
    color: white;
}

.navbar li {
    color: white;
}

.navbar-nav .nav-link:hover {
    color: inherit;
    /* or set it to any other color you want */
    background-color: transparent;
    /* removes the black background on hover */
}

.navbar-brand:hover {
    color: inherit;
    /* Keeps the original text color */
    text-decoration: none;
    /* Removes underline or any other hover effect */
}

.transparent-btn {
    background: transparent !important;
    /* Fully transparent */
    border: none !important;
    /* No border */
    color: white;
    /* Text color */
    font-size: 16px;
    /* Adjust size if needed */
    padding: 5px 10px;
    /* Adds spacing */
}


/* Removes any hover effect */

.transparent-btn:hover,
.transparent-btn:focus,
.transparent-btn:active {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}


/* Login Container */

.background-image {
    position: relative;
    background-image: url('../images/thumbnail_image001.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    /* Enable flexbox */
    justify-content: center;
    /* Horizontally center */
    align-items: center;
    /* Vertically center */
}

.login-container {
    position: relative;
    /* Remove absolute positioning here */
    max-width: 600px;
    width: 450px;
    padding: 35px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    /* Optional: Semi-transparent background */
}

.login-container h2 {
    text-align: center;
    color: #000033;
}


/* Input Group */

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #000033;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
}


/* Button Style */

.button {
    background-color: #0066FF;
    /* Blue Ribbon */
    color: #FFFFFF;
    padding: 10px;
    border: none;
    border-radius: 3px;
    width: 100%;
    cursor: pointer;
}

.button:hover {
    background-color: #00CCFF;
    /* Aqua */
}


/* Error Message */

.error {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}


/* Dashboard Layout */

.logout-top {
    margin-bottom: 20px;
}

.logout-top a {
    display: block;
    background-color: #0066FF;
    /* Blue Ribbon */
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 3px;
}


/* Sidebar Headings & List */

.sidebar h3 {
    color: #000033;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 10px 0;
    padding-left: 10px;
}

.sidebar li a {
    text-decoration: none;
    color: white;
}

.white-btn {
    color: white !important;
    /* Makes text color white */
    background: transparent !important;
    /* Keeps background transparent */
    border: none !important;
    /* Removes border */
}


/* Ensures it stays white on hover, focus, and active states */

.white-btn:hover,
.white-btn:focus,
.white-btn:active {
    color: white !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}


/* Graphs Section */

.graphs {
    background-color: #EEEEEE;
    padding: 20px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
}

.default-chart-text {
    text-align: center;
    color: gray;
}