body {
    font-family: Arial, sans-serif;
    background-color: #0b0c10;
    color: #c5c6c7;
    margin: 0;
    padding: 0;
}
header {
    text-align: center;
    margin: 2rem 0;
}

h1 {
    color: #66fcf1;
}

main {
    max-width: 800px;
    padding: 1rem;
    margin: 0 auto; /* <-- this centers the main content */
}

nav {
    display: flex;
    flex-direction: row; /* makes items go horizontally */
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* lets them wrap on smaller screens */
    margin-bottom: 2rem;
}

nav a {
    color: #45a29e;
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid #45a29e;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap; /* keeps button text from wrapping */
}

nav a:hover {
    background-color: #45a29e;
    color: #0b0c10;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #45a29e;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: #1f2833;
    color: #c5c6c7;
    text-align: center;
    padding: 0.5rem;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Buttons and links */
button {
    background-color: #45a29e;
    color: #0b0c10;
    border: none;
    padding: 10px 20px;
    margin-top: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #66fcf1;
    color: #0b0c10;
}

a.button-link {
    display: inline-block;
    background-color: #45a29e;
    color: #0b0c10;
    border: none;
    padding: 10px 20px;
    margin-top: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

a.button-link:hover {
    background-color: #66fcf1;
    color: #0b0c10;
}

.back-link {
    text-align: center;
    margin-top: 2rem;
}

/* Optional: center form and headings inside main content */
form, .summary, h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

/* Give <label> and <textarea> proper spacing */
form label {
    display: block;
    margin: 1rem 0 0.5rem;
    font-weight: bold;
}

textarea {
    width: 100%;
    height: 200px;
    background-color: #1f2833;
    color: #c5c6c7;
    border: 1px solid #45a29e;
    border-radius: 5px;
    padding: 10px;
    resize: vertical;
    font-family: monospace;
}

/* Beta Label */
.beta-label {
    background-color: #ffa500;
    color: #0b0c10;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

.beta-banner {
    margin: 0 auto;
    width: fit-content;
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid #e6b800;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
}

.alpha-label {
    background-color: #ff4444;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

.alpha-banner {
    background-color: #ff4444;
    color: #fff;
    font-weight: bold;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid #cc0000;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    width: 100%;               /* ← Stretch across */
    box-sizing: border-box;
}