/* Sleeperchamp Styles - Clean Dashboard UI */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    color: #333;
}

/* App Container */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand h1 {
    color: white;
    font-size: 1.4em;
    font-weight: 700;
}

/* User Menu (Top Right) */
.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.user-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.user-icon {
    width: 20px;
    height: 20px;
}

.user-menu-email {
    font-size: 0.9em;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.user-menu.open .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    display: none;
    overflow: hidden;
}

.user-menu.open .user-dropdown {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.15s;
}

.dropdown-item:hover {
    background: #f5f7fa;
}

.dropdown-item svg {
    width: 18px;
    height: 18px;
    color: #666;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Auth Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 28px;
}

.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: #f8f9fa;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.auth-tab:hover {
    background: #e9ecef;
}

.auth-tab.active {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
}

/* Dashboard */
.dashboard {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-header h2 {
    font-size: 1.5em;
    color: #1a1a2e;
}

.btn-add {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add svg {
    width: 20px;
    height: 20px;
}

/* Accounts Container */
.accounts-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Account Block */
.account-block {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-email {
    font-weight: 600;
    font-size: 1.05em;
}

.account-meta {
    font-size: 0.8em;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-actions {
    position: relative;
}

.account-menu-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    padding: 8px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.account-menu-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.account-menu-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    display: none;
    z-index: 50;
    overflow: hidden;
}

.account-dropdown.open {
    display: block;
}

.account-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s;
}

.account-dropdown-item:hover {
    background: #f5f7fa;
}

.account-dropdown-item svg {
    width: 16px;
    height: 16px;
    color: #666;
}

.account-dropdown-item.danger {
    color: #dc3545;
}

.account-dropdown-item.danger svg {
    color: #dc3545;
}

/* Leagues List */
.leagues-list {
    padding: 0;
}

.leagues-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}

.no-leagues {
    padding: 24px;
    text-align: center;
    color: #888;
    font-style: italic;
}

/* League Row */
.league-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.15s;
}

.league-row:last-child {
    border-bottom: none;
}

.league-row:hover {
    background: #f8fafc;
}

.league-sport-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    margin-right: 14px;
    flex-shrink: 0;
}

.league-sport-icon.football { background: #e8f5e9; }
.league-sport-icon.hockey { background: #e3f2fd; }
.league-sport-icon.basketball { background: #fff3e0; }
.league-sport-icon.baseball { background: #fce4ec; }

.league-info {
    flex: 1;
    min-width: 0;
}

.league-name {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.league-team {
    font-size: 0.85em;
    color: #666;
    margin-top: 2px;
}

.league-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.league-season {
    font-size: 0.85em;
    color: #888;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 12px;
}

.league-arrow {
    color: #ccc;
    width: 20px;
    height: 20px;
}

.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 600;
}

.badge-inactive {
    background: #f0f0f0;
    color: #888;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

/* League Page */
.league-page {
    animation: fadeIn 0.3s ease;
}

.page-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-back:hover {
    background: #f5f7fa;
    border-color: #ccc;
}

.btn-back svg {
    width: 18px;
    height: 18px;
}

.page-title h2 {
    font-size: 1.4em;
    color: #1a1a2e;
}

.page-subtitle {
    font-size: 0.9em;
    color: #666;
}

/* League Tabs */
.league-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: #e9ecef;
    padding: 4px;
    border-radius: 10px;
    width: fit-content;
}

.league-tab {
    padding: 10px 24px;
    background: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.league-tab:hover {
    color: #333;
}

.league-tab.active {
    background: white;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

/* Roster Content */
.roster-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.teams-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-roster {
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.team-header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.team-header .team-name {
    font-weight: 600;
    font-size: 1.05em;
}

.team-header .team-owner {
    font-size: 0.85em;
    opacity: 0.85;
}

.team-header .team-record {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.roster-table {
    padding: 12px;
}

.roster-table table {
    width: 100%;
    border-collapse: collapse;
}

.roster-table th,
.roster-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.roster-table th {
    background: #e9ecef;
    font-weight: 600;
    font-size: 0.85em;
    color: #555;
}

.roster-table tr:last-child td {
    border-bottom: none;
}

.roster-table tr:hover {
    background: #f0f0f0;
}

.slot-cell {
    font-weight: 600;
    color: #0f3460;
    width: 60px;
}

.player-cell {
    font-weight: 500;
}

.team-cell {
    color: #666;
    font-size: 0.9em;
    width: 50px;
}

.bench-player {
    opacity: 0.6;
}

.bench-player .slot-cell {
    color: #6c757d;
}

/* User's team highlighting */
.team-roster.my-team {
    border: 2px solid #0f3460;
    box-shadow: 0 4px 12px rgba(15, 52, 96, 0.15);
}

.my-team-header {
    background: linear-gradient(135deg, #1a5f2a 0%, #0f3460 100%) !important;
}

/* Free Agents */
.freeagents-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 8px;
}

.freeagents-filters label {
    font-weight: 500;
    color: #555;
    margin: 0;
}

.freeagents-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    min-width: 120px;
}

.fa-count {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 12px;
}

.fa-enriched-info {
    color: #0f3460;
    font-weight: 500;
}

.fa-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.fa-table th,
.fa-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.fa-table th {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
    font-weight: 600;
    font-size: 0.85em;
}

.fa-table tr:last-child td {
    border-bottom: none;
}

.fa-table tr:hover {
    background: #f8f9fa;
}

.fa-table .player-name {
    font-weight: 500;
}

.fa-table .player-pos {
    color: #0f3460;
    font-weight: 600;
    width: 50px;
}

.fa-table .player-team {
    color: #666;
    width: 60px;
}

.fa-table .player-owned {
    color: #666;
    width: 70px;
    text-align: right;
}

/* Enriched table */
.fa-table-enriched {
    font-size: 0.9em;
}

.fa-table-enriched th,
.fa-table-enriched td {
    padding: 8px 10px;
}

.stat-cell {
    text-align: center;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
    min-width: 45px;
}

.stat-cell.stat-na {
    color: #ccc;
}

.fa-table-enriched tr.has-stats {
    background: rgba(15, 52, 96, 0.03);
}

.player-links {
    white-space: nowrap;
}

.stat-link {
    display: inline-block;
    padding: 2px 6px;
    background: #e9ecef;
    color: #0f3460;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 4px;
    transition: background 0.2s;
}

.stat-link:hover {
    background: #0f3460;
    color: white;
}

.fa-legend {
    color: #888;
    font-size: 0.8em;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

/* Injury badges */
.injury-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7em;
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle;
}

.injury-badge.injury-day-to-day,
.injury-badge.injury-d {
    background: #fef3c7;
    color: #92400e;
}

.injury-badge.injury-out,
.injury-badge.injury-o {
    background: #fee2e2;
    color: #991b1b;
}

.injury-badge.injury-questionable,
.injury-badge.injury-q {
    background: #fef3c7;
    color: #b45309;
}

.injury-badge.injury-probable,
.injury-badge.injury-p {
    background: #d1fae5;
    color: #065f46;
}

.injury-badge.injury-suspension,
.injury-badge.injury-sus {
    background: #fce7f3;
    color: #9d174d;
}

/* Eligible positions */
.eligible-pos {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.75em;
    color: #6b7280;
    font-weight: 400;
}

/* Injured player row */
.injured-player {
    background: #fef2f2 !important;
}

.injured-player:hover {
    background: #fee2e2 !important;
}

/* Position inline in player cell */
.player-pos-inline {
    display: inline-block;
    background: #e9ecef;
    color: #0f3460;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 6px;
}

/* Stats cell in roster tables */
.stats-cell {
    font-size: 0.85em;
    color: #555;
    font-family: 'Monaco', 'Menlo', monospace;
}

/* Forms */
.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #555;
    font-weight: 500;
    font-size: 0.95em;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafafa;
}

input:focus,
select:focus {
    outline: none;
    border-color: #0f3460;
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.1);
    background: white;
}

input::placeholder {
    color: #aaa;
}

.twofa-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.btn-primary.full-width {
    width: 100%;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #c82333;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    animation: modalSlideIn 0.25s ease;
}

.modal-sm {
    max-width: 380px;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.95) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.3em;
    color: #1a1a2e;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.15s;
}

.modal-close:hover {
    color: #333;
}

.modal-form .btn-primary {
    width: 100%;
    margin-top: 8px;
}

.modal-form .error-message {
    margin-top: 16px;
    padding: 14px;
    font-weight: 500;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.modal-actions .btn {
    flex: 1;
}

/* Token Details */
.token-details {
    margin-bottom: 16px;
}

.token-metadata {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #e9ecef;
}

.metadata-item {
    margin-bottom: 6px;
    font-size: 0.85em;
    color: #555;
}

.metadata-item:last-child {
    margin-bottom: 0;
}

.metadata-item strong {
    color: #333;
    margin-right: 6px;
}

.token-item {
    margin-bottom: 14px;
}

.token-item label {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 0.85em;
}

.token-value {
    display: block;
    background: #f4f4f5;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.8em;
    word-break: break-all;
    color: #333;
    border: 1px solid #e4e4e7;
}

.token-long {
    max-height: 80px;
    overflow-y: auto;
}

.token-info {
    display: block;
    font-size: 0.7em;
    color: #666;
    margin-top: 3px;
    font-style: italic;
}

/* Messages */
.error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #fecaca;
    font-size: 0.95em;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #a7f3d0;
    font-size: 0.95em;
}

.help-text {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 16px;
}

.loading {
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 30px 20px;
}

.no-data, .no-players {
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 30px 20px;
}

.no-accounts {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.no-accounts p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Status Bar */
.status-bar {
    padding: 10px 24px;
    text-align: center;
    background: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.status-indicator {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.8em;
    font-weight: 500;
}

.status-ok {
    background: #d1fae5;
    color: #065f46;
}

.status-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Loading animation */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 16px;
    }

    .top-nav {
        padding: 0 16px;
    }

    .user-menu-email {
        display: none;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .dashboard-header .btn-add {
        width: 100%;
    }

    .account-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .account-actions {
        width: 100%;
    }

    .account-menu-btn {
        width: 100%;
        justify-content: center;
    }

    .league-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .league-meta {
        width: 100%;
        justify-content: flex-end;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .league-tabs {
        width: 100%;
    }

    .league-tab {
        flex: 1;
        text-align: center;
    }

    .modal-content {
        padding: 20px;
        margin: 10px;
    }

    .fa-table-enriched {
        font-size: 0.75em;
    }

    .fa-table-enriched th,
    .fa-table-enriched td {
        padding: 6px 4px;
    }

    .stat-cell {
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.2em;
    }

    .auth-card {
        padding: 24px 20px;
    }

    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
