@font-face {
    font-family: 'Bungee';
    src: url('bungee.ttf') format('truetype');
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

#login-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('login_background.jpg');
    background-size: cover;
}

#login-box {
    width: 400px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

#login-box p {
    margin: 20px;
    font-size: 16px;
}

#login-username{
    margin-top: 10px !important;
}

#login-button {
    margin-top: 48px !important;
}

#guest-button {
    margin-bottom: 28px !important;
}

#login-username, #login-password {
    width: 80%;
    padding: 10px;
    margin: 5px;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid #ccc;
    transition: border-color 0.1s ease-in-out;
}

#login-username:focus, #login-password:focus {
    outline: none;
    border-color: #1e88e5;
}

#login-box button {
    width: 85.5%;
    padding: 10px;
    margin: 5px;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: all 0.1s ease-in-out;
}

#login-box button:hover {
    background-color: #1976d2;
}

#login-box button:focus {
    outline: none;
}

#login-box button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#login-box button:disabled:hover {
    background-color: #1e88e5;
}

#top-bar {
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    user-select: none;
}

#top-bar li {
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
    padding-right: 0;
}

#user-info {
    padding: 29px !important;
    float: right;
}

#user-info-username {
    margin: 0;
    font-weight: bold;
}

#user-info-level {
    margin: 0;
    color: gray;
}

#search {
    border-radius: 10px;
    border: 2px solid #ccc;
    overflow: hidden;
}

#search-bar {
    width: 250px;
    padding: 10px;
    margin: 0;
    font-size: 16px;
    border: none;
}

#search-bar:focus {
    outline: none;
}

#search-button {
    padding: 10px;
    margin: 0;
    font-size: 16px;
    border: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: all 0.1s ease-in-out;
}

#search-button:hover {
    background-color: #1976d2;
}

#search-button:focus {
    outline: none;
}

table, th, td {
    border: 2px solid #ccc;
    border-collapse: collapse;
}

table {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    user-select: none;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    text-align: center;
}

.download-button {
    padding: 10px;
    margin: 0;
    margin-right: 15px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: all 0.1s ease-in-out;
}

.download-button:hover {
    background-color: #1976d2;
}

.download-button:focus {
    outline: none;
}