body {
    font-family: 'Roboto Mono', monospace !important;
    background-color: #000000;
    color: #e5e9f0;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.site-title {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.nav-links a, .nav-links button {
    color: #4A9EFF;
    text-decoration: underline;
    white-space: nowrap;
}

.nav-links button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    margin: 0;
}

a {
    color: #6c757d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #4c566a;
    color: #e5e9f0;
}

.btn-secondary:hover {
    background-color: #616e88;
}

button {
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 0.5rem;
}

button:hover {
    background-color: #0056b3;
}

/* Content Cards - Reusable container styling */
.content-card {
    background: #0a0a0a;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

/* Utility Classes */
.hidden {
    display: none;
}

.content-block {
    background: #000000;
    border: 1px solid #4c566a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.content-block h2 {
    margin-top: 0;
    color: #88c0d0;
    border-bottom: 2px solid #4c566a;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content-block p {
    color: #e5e9f0;
}

.content-block label {
    color: #e5e9f0;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-container h1 {
    margin-left: 0;
    color: #e5e9f0;
}

.login-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #4c566a;
}

.login-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #88c0d0;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    transition: all 0.2s;
}

.login-tab:hover {
    background: #2e3440;
}

.login-tab.active {
    border-bottom-color: #88c0d0;
    color: #e5e9f0;
}

.login-form-container {
    display: none;
}

.login-form-container.active {
    display: block;
}
