body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1e3a8a;
    color: white;
    padding: 1rem;
    text-align: center;
}

main {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

label {
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

input, select, button {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

button {
    background-color: #1e3a8a;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #334fa3;
}

#addTeamBtn {
    background-color: #2563eb;
}

#addTeamBtn:hover {
    background-color: #3b82f6;
}

.team-number-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.remove-team {
    background-color: #dc2626;
    color: white;
    max-width: 120px;
    flex-shrink: 0;
}

.remove-team:hover {
    background-color: #ef4444;
}

/* Landing page specific */
.landing {
    text-align: center;
}

.landing-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.landing-btn {
    display: inline-block;
    padding: 1rem;
    background-color: #2563eb;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.landing-btn:hover {
    background-color: #3b82f6;
}
