body {
    font-family: Arial, sans-serif;
}

.sidebar {
    height: 100vh;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.login-container {
    max-width: 400px;
    width: 100%;
    margin: 20px;
}
.login-form {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}
.login-button {
    width: 100%;
}
.error-message {
    color: #dc3545; /* Bootstrap's red for errors */
    margin-top: 10px;
}

.card-body-settings {
    min-height: 230px;
    text-align: center;
}

.card-body-dashboard {
    text-align: center;
}

.card-body-dashboard p{
    font-size: x-large;
    font-weight: bolder;
}

.card-body-dashboard h5{
    color: black;
    font-weight: bolder;
}

.sync-button {
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
}

/* Full-screen overlay for background dimming */
#loadingStatus {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 9999; /* Make sure it's above everything else */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content inside the loading overlay */
.loading-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    font-size: 35px;
    color: #333;
}

/* Loading text style */
.loading-content strong {
    font-size: 35px;
    color: #0056b3; /* Set the default color of "Working..." text */
    background: linear-gradient(90deg, #000000, #676363, #1d528b); /* Gradient color */
    background-size: 200% 100%; /* To make the gradient larger than the text */
    -webkit-background-clip: text; /* Clip the background to the text (WebKit browsers) */
    -webkit-text-fill-color: transparent; /* Make the text itself transparent to show the background */
    animation: gradientAnimation 2s linear infinite; /* Animate the gradient */
}

.EPS-forms {
    background: #d6d6d6;
    padding: 5px;
    border-radius: 5px;
}

.EPS-admin-title-header {
    font-weight: bolder;
    color: #0d6efd;
}

.custom-divider {
    border: none;
    height: 2px; /* Adjust thickness here */
    background-color: #ccc; /* Adjust color here */
    margin: 20px 0; /* Adjust spacing here */
}

.thick-divider {
    height: 5px;            /* Adjust this value to make the divider thicker */
    width: 100%;            /* Full width of the container */
    background-color: #444444; /* Adjust color */
    margin: 20px 0;         /* Space above and below the divider */
}

.nav-link {
    padding-left: 30px; /* Space for the icon */
    display: flex;
    align-items: center;
    background-position: left center;
    background-repeat: no-repeat;
}

.nav-dashboard {
    background-image: url('/path/to/dashboard-icon.svg');
}

.nav-clients {
    background-image: url('/path/to/clients-icon.svg');
}

.nav-devices {
    background-image: url('/path/to/devices-icon.svg');
}