body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #121212; /* Dark background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #e0e0e0; /* Light text */
}

h1 {
    text-align: center;
    color: #ffffff; /* White text */
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(30, 30, 30, 0.85); /* Semi-transparent dark background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Stronger shadow */
}

label {
    font-weight: bold;
    color: #e0e0e0; /* Light text */
}

input, textarea, button {
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    background-color: #2c2c2c; /* Dark input background */
    color: #ffffff; /* White text */
    border: 1px solid #444444; /* Darker border */
    border-radius: 5px;
}

textarea {
    resize: none;
}

button {
    cursor: pointer;
    background-color: #444444; /* Dark button background */
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555555; /* Slightly lighter on hover */
}

button:disabled {
    background-color: #333333; /* Darker gray for disabled buttons */
    cursor: not-allowed;
}

input:disabled, textarea:disabled {
    background-color: #2a2a2a; /* Slightly darker gray for disabled fields */
    color: #666666; /* Dimmed text for disabled fields */
    border: 1px dashed #444444; /* Dashed border to indicate disabled state */
}

#results, #hall-of-fame-results{
    height: 300px; /* Increase height to make it larger */
}

img {
    pointer-events: none; /* Prevent interaction with the popup image */
}

#tab-buttons {
    display: flex;
    border-bottom: 2px solid #555555;
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.tab-button {
    padding: 10px 20px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #555555;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-size: 16px;
    width: auto;
    margin-right: 4px;
    transition: background-color 0.2s;
}

.tab-button:hover {
    background-color: #3a3a3a;
}

.tab-button.active {
    background-color: #1e1e1e;
    color: #ffffff;
    border-color: #555555;
    margin-bottom: -2px;
    border-bottom: 2px solid #1e1e1e;
}

#more-info-container {
    margin-top: 10px;
}

#toggle-more-info {
    background-color: #00509e; /* Lighter blue */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#toggle-more-info:hover {
    background-color: #003366; /* Darker blue on hover */
}

#more-info {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #444444; /* Darker border */
    border-radius: 5px;
    background-color: #1e1e1e; /* Match form background */
}

div[style*="display: flex; gap: 20px;"] {
    margin-top: 20px; /* Add spacing above the results section */
}