body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.container a {
    display: inline-block;
    margin: 20px;
    padding: 20px;
    background-color: #00B4CC;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
}

.container a:hover {
    background-color: #0092A6;
}

h1 {
    color: #333;
}

input[type="text"], input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #00B4CC;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0092A6;
}

.success {
    color: #28a745;
}

.error {
    color: #dc3545;
}

#loadingMessage {
    display: none;
    margin-top: 10px;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    display: none;
}

th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
} 

th {
    background-color: #f2f2f2;
}

td.markdown {
    font-family: Arial, sans-serif;
} 

#tokenOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 244, 244, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#tokenOverlayContent {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

#tokenOverlay input[type="text"], #tokenOverlay button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#tokenOverlay button {
    background-color: #00B4CC;
    color: white;
    cursor: pointer;
}

#tokenOverlay button:hover {
    background-color: #0092A6;
}

#tokenErrorMessage {
    color: red;
}

nav {
    background-color: white;
    padding: 10px 20px;
}

nav a {
    margin-right: 15px;
    text-decoration: none;
}