.page-header {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.data-table-container {
    overflow: auto;

    border-radius: .75rem;

    border-width: 2px;
}

.data-table {
    font-size: 11pt;

    width: 100%;
}

.data-table > thead {
    background-color: #36304a;

    color: white;
}

.data-table > thead > tr > th {
    border-color: #e5e7eb;
    border-style: solid;
    border-width: 1px;

    padding: 0.5rem;
    
    white-space: nowrap
}

.data-table > tbody > tr:nth-child(even) {
    background-color: rgb(235, 235, 235);
}

.data-table > tbody > tr > td {
    border-color: #e5e7eb;
    border-style: solid;
    border-width: 1px;

    padding: 0.5rem;
}

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

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

.phone-cell {
    text-align: right;
    white-space: nowrap;
}

.nav-logo {
    height: 50px;
}

label {
    min-width: 100px;
}

#login-form > p > label {
    display: block;
    min-width: 100px;
}

#login-form > p > input {
    border: 2px solid black;
    min-width: 100px;
}

.button {
    /*mt-2 px-3 py-2 rounded-lg bg-blue-600 text-white*/
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: .75rem;
    padding-right: .75rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-radius: .5rem;
    background-color: rgb(37 99 235);
    color: white;
}