body{
    background: #FFF8E5;
}

.page-content {
    width: 100%;
    overflow-x: auto;
    text-align: left;
}

.page-content button, a {
    color: #2b2b2b;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 999px;
    padding: 6px 12px;
    border: 1px solid rgba(1, 33, 80, 0.2);
    background-color: rgb(255, 230, 184);
    display: inline-block;
    margin: 2px;
}

.page-content a:hover, button:hover{
    background: #2B2B2B;
    color: rgb(255, 210, 125);
}

.page-content .pure-g{
    justify-content: center; 
    text-align: center;
}

/* Top bar */
.top-bar {
    background: linear-gradient(#ffe5ac, #ffaa49);
    color: #2B2B2B;
    padding: 10px 10px;
}

.top-bar h1 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none; 
}

.top-bar a {
    color: #2B2B2B;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 999px;
    padding: 6px 12px;
    border: 1px solid rgba(1, 33, 80, 0.2);
    background-color: rgb(255, 230, 184);
}

.top-bar a:hover {
    background: #2B2B2B;
    color: rgb(255, 210, 125);
}

.top-bar .user-text {
    font-size: 0.9rem;
}

.top-bar .pure-u-1-3{
    margin: auto; 
    text-align: center;
}

.table-wrapper{
    overflow-x: auto;
    width: 100%;
}

.table-wrapper table{
    border-collapse: collapse;
    width: max-content;
    min-width: 100%;
}

.table-wrapper table th {
    background: linear-gradient(#00235c, #1b2b44);
    color: wheat;
    white-space: nowrap;
}

.table-wrapper table th {
    white-space: nowrap;
}

.non-table-wrapper{
    justify-content: center;
    text-align: center;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-box button {
    margin-top: 20px;
    padding: 8px 20px;
    cursor: pointer;
}