body {
    margin: 0; 
    padding: 0; 
    background: linear-gradient(rgba(17, 24, 21, 0.85), rgba(17, 24, 21, 0.85)), 
    url('pics/hatter.png') center/cover fixed;
    color: white; 
    font-family: 'Montserrat', sans-serif; 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 90%;
    max-width: 350px;
    margin: 20px;
    box-sizing: border-box;
    animation: slideUp 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 6px;
    box-sizing: border-box;
}

button {
    background: #4A7766;
    border: none;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
    font-weight: bold;
}

button:hover {
    background: white;
    transform: translateY(-2px);
    transition: all 0.2s ease;
    color: #4A7766;
}

h2 {
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-link {
    display: block;
    margin-top: 15px;
    color: white;          
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #4A7766;
}

.dashboard-container { width: 90%; max-width: 1000px; margin: 50px auto; background: rgba(0,0,0,0.6); padding: 20px; border-radius: 10px; }
    table { width: 100%; border-collapse: collapse; margin-top: 20px; color: white; }
    th, td { padding: 12px; border-bottom: 1px solid #444; text-align: left; }

.club-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    }

.btn-mini { padding: 5px 10px; font-size: 12px; background: #4A7766; color: white; text-decoration: none; border-radius: 4px; }

.logout-btn {
    margin-left: auto !important;
    background: #a00 !important;
    }

table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 80%;
}

td, th {
    text-align: center;
    padding: 10px;
}

select {
    padding: 8px;
    border: 1px solid #4A7766;
    border-radius: 5px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-size: 14px;
    text-align-last: center;
}

select:hover {
    border-color: #333;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #4A7766;
}

.dashboard-container input, .dashboard-container select {
    width: 100%;
    margin-bottom: 5px;
}