/* Additional custom styles beyond Bootstrap */

body {
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* Login/Register page styles */
.auth-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
}

.auth-form {
    padding: 20px;
    border-radius: 8px;
}

/* Dashboard styles */
.league-card {
    transition: transform 0.2s;
    margin-bottom: 15px;
}

.league-card:hover {
    transform: translateY(-5px);
}

.league-header {
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-tabs {
    margin-bottom: 20px;
}

/* League dashboard components */
.stats-card {
    height: 100%;
}

.player-card {
    margin-bottom: 15px;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 20px 0;
    text-align: center;
}
