body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
    height: 100%;
}

table caption {
    text-align: left;
    font-weight: 700;
    font-size: 16pt;
    padding: 4px 4px;
    max-width: 50%
}

.menu {
    display: flex;
    background: #1f2937;
    padding: 10px;
}

    .menu a {
        color: white;
        text-decoration: none;
        margin-right: 20px;
        padding: 8px 12px;
        border-radius: 4px;
    }

        .menu a:hover {
            background: #374151;
        }

.sticky-header {
    position: sticky;
    top: 0;
}
.limitedView {
    width: 100%;
    height: 240px;
    overflow-y: scroll;
}
.clickable-row {
    background: #f7f7f7;
}
.clickable-row:hover
{
    background-color: #d0d0d0;
    cursor: pointer;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #1f2937;
}

li {
    float: left;
}

    li a, .dropbtn {
        display: inline-block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        li a:hover, .dropdown:hover .dropbtn {
            background-color: #374151;
        }

    li.dropdown {
        display: inline-block;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1f2937;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: #ffffff;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #374151;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.container {
    padding: 20px;
    height:100%;
}

.entryToolBar {
    padding: 5px 5px 5px 5px;
    background-color: #d0d0d0;
}

.entryToolBarRow {
    border: solid 1px;
}

.entryToolBarCol1a {
    text-align: right;
    width: fit-content;
    padding: 7px 4px;
}

.entryToolBarCol1b {
    text-align: left;
    width: fit-content;
    padding: 7px 4px;
}

.entryToolBarCol2a {
    text-align: right;
    width: fit-content;
    padding: 7px 4px;
}

.entryToolBarCol2b {
    text-align: left;
    width: fit-content;
    padding: 7px 4px;
}

.entryToolBarCol3 {
    height: 100%;
    align-content: center;
    display: flex;
    padding: 7px 4px;
}

.grid {
    display: flex;
    gap: 20px;
}

.left-align {
    float: left;
    text-align: left;
}

.right-align {
    text-align: right;
}

.form-input-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates two equal-width columns */
    gap: 10px; /* Adds space between the columns and rows */
    width: 50%;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 4px;
}

.btn-secondary {
    background: #6b7280;
    color: white;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 4px;
}

.btn-small {
    background: #3b82f6;
    color: white;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.btn-danger {
    background: #dc2626;
    color: white;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.inline-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .inline-form input {
        padding: 8px;
    }

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

    .table th, .table td {
        border: 1px solid #ddd;
        padding: 10px;
    }

.valid {
    background: #dcfce7;
}

.expiring {
    background: #fef3c7;
}

.expired {
    background: #fee2e2;
}

.login-box {
    width: 400px;
    margin: 120px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .login-box h2 {
        margin: 0 0 20px;
    }

    .login-box label {
        display: block;
        margin: 10px 0 5px;
    }

    .login-box input {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
    }

.error {
    background: #fee2e2;
    color: #b91c1c;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.reportTab {
    background: #e0e0e0;
    display: none;
}

fieldset.horizontal, fieldset.horizontal label{
    display: flex;
    border: 0;
    gap: 0px 5px;
    flex-wrap: wrap;
    margin-right: 15px; /* Spacing between options */
}

.Color90Day
{
    color: #000000;
    background: #00C000;
}

.Color60Day {
    color: #000000;
    background: #F0F000;
}

.Color30Day {
    color: #ffffff;
    background: #ff0000;
}