/* General Styles */
body {
    font-family: 'Arial', sans-serif; /* A more modern and widely available font */
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4; /* Light grey background */
    color: #333; /* Dark grey text */
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

h2, h3 {
    text-align: center;
    margin-bottom: 15px;
}

a {
    color: #007bff; /* Bootstrap blue for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px; /* Limit the width for better readability */
    margin: 0 auto; /* Center the dashboard */
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.total-accounts, .accounts-per-day {
    margin-bottom: 0px;
}
.total-accounts h2, .accounts-per-day h2 {
    margin: 9px;
}
.accounts-per-day {
    margin-bottom: 20px;
}

.employee-columns {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.employee-column {
    width: 45%;
    border: 1px solid #ddd; /* Lighter border */
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9; /* Slightly lighter background for contrast */
    text-align:center;
}

.employee-column h3 {
    margin-top: 0;
    color: #007bff; /* Blue heading for employees */
}

.employee-column ul {
    list-style: none;
    padding: 0;
}

.employee-column li {
    margin-bottom: 5px;
}

.add-account-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.add-account-button:hover {
    background-color: #0056b3;
}

#viewMigratedAccounts {
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1050; /* Ensure it's on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px 20px 60px 20px;
    border: 1px solid #888;
    width: 400px;
    max-width: 60%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}



.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Admin Modal Specific Styles (if needed) */
#adminModal .modal-content {
    width: 40%; /* Smaller width for admin settings */
}

/* Migrated Accounts Modal Specific Styles (if needed) */
#migratedAccountsModal .modal-content {
    width: 80%; /* Wider width to accommodate the list */
    max-height: 80%; /* Prevent the modal from being too tall */
    overflow-y: auto; /* Add scrollbar if content overflows */
}

#loggedUserIndex {
    text-align: center;
    margin-bottom: 30px;
}

#formLogin {
    text-align: center;
}
.business-days-left h2 {
    margin: 0;
}
a#viewMigratedAccounts {
    display: none;
}