/* Shared component styles used across multiple pages */

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

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

/* Navigation */
.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;
}

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

a:hover {
    text-decoration: underline;
}

/* Buttons */
.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;
}

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