* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

/* 로그인 페이지 */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.login-box h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #667eea;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: white;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #667eea;
}

.form-select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-login:hover {
    transform: translateY(-2px);
}

.error-message {
    margin-top: 15px;
    padding: 10px;
    background: #fee;
    color: #c33;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.error-message.show {
    display: block;
}

/* 네비게이션 바 */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.nav-container h1 {
    margin: 0;
    flex-shrink: 1;
    min-width: 0;
}

.nav-container h1 a {
    color: #667eea;
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.nav-container h1 a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.nav-menu span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    font-size: 14px;
}

.btn-logout {
    padding: 8px 20px;
    background: #764ba2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-logout:hover {
    background: #5a3880;
}

/* 컨테이너 */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.welcome-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.welcome-section h2 {
    color: #667eea;
}

/* 메뉴 그리드 */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.menu-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.menu-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.menu-card h3 {
    margin-bottom: 10px;
    color: #667eea;
}

.menu-card p {
    color: #666;
    font-size: 14px;
}

/* 버튼 스타일 */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-success {
    background: #48bb78;
    color: white;
}

.btn-danger {
    background: #f56565;
    color: white;
}

/* 테이블 */
table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

table th {
    background: #667eea;
    color: white;
    padding: 15px;
    text-align: left;
}

table td {
    padding: 15px;
    border-bottom: 1px solid #e1e1e1;
}

table tr:last-child td {
    border-bottom: none;
}

/* 카드 */
.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card h3 {
    color: #667eea;
    margin-bottom: 20px;
}

/* 폼 행 */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* 도움말 박스 */
.help-box {
    background: linear-gradient(135deg, #e0e7ff 0%, #f0e7ff 100%);
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.help-box h4 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 16px;
}

.help-box ol {
    margin-left: 20px;
    color: #555;
    line-height: 1.8;
}

.help-box ol li {
    margin: 8px 0;
}

.help-box a {
    text-decoration: none;
}

.help-box a:hover {
    text-decoration: underline;
}

/* 일정 목록 */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.schedule-header h4 {
    color: #667eea;
    margin: 0;
}

.schedule-item p {
    margin: 8px 0;
    color: #555;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* 일정 카드 */
.schedule-card {
    border-left: 5px solid #667eea;
    overflow: hidden;
    transition: all 0.3s ease;
}

.schedule-card.collapsed {
    background: #f8f9fa;
}

.schedule-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    background: white;
    transition: background 0.2s;
}

.schedule-card-header:hover {
    background: #f8f9fa;
}

.schedule-card-header h3 {
    margin: 0 0 10px 0;
    color: #667eea;
    font-size: 18px;
}

.schedule-card-body {
    padding: 0 20px 20px 20px;
}

.toggle-icon {
    font-size: 20px;
    color: #667eea;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* 참석 통계 */
.attendance-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.attendance-stats span {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
}

.stat-yes {
    background: #d4edda;
    color: #155724;
}

.stat-no {
    background: #f8d7da;
    color: #721c24;
}

.stat-none {
    background: #e2e3e5;
    color: #383d41;
}

/* 탭 */
.attendance-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e1e1e1;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    background: #f8f9fa;
    color: #667eea;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    min-height: 100px;
}

.schedule-info {
    margin: 20px 0;
}

.schedule-info p {
    margin: 10px 0;
    color: #555;
}

/* 참석 버튼 */
.attendance-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.attendance-buttons .btn {
    flex: 1;
}

.attendance-buttons .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 참석 현황 */
.attendance-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e1e1e1;
}

.attendance-list {
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
}

.attendance-list table {
    width: 100%;
    font-size: 14px;
    text-align: center;
}

.attendance-list thead th {
    position: sticky;
    top: 0;
    background: #f8f9fa;
    z-index: 1;
    color: #333;
    font-weight: 600;
}

.attendance-list tbody td {
    text-align: center;
}

.attendance-list tbody tr:hover {
    background: #f8f9fa;
}

.attendance-item {
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 출석체크 */
.status-indicator {
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.status-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.status-warning {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeeba;
}

.status-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 2px solid #bee5eb;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin: 20px 0;
}

/* 업데이트 일지 */
.changelog-entry {
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.changelog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.changelog-title {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 18px;
}

.changelog-content {
    color: #555;
    line-height: 1.6;
}

.changelog-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.changelog-content li {
    margin: 5px 0;
}

/* 팀원 목록 */
.member-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-phone {
    font-size: 14px;
    color: #666;
}

.member-actions {
    display: flex;
    gap: 8px;
}

/* 권한 뱃지 */
.role-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.role-superadmin {
    background: #ffd700;
    color: #333;
}

.role-admin {
    background: #667eea;
    color: white;
}

.role-member {
    background: #48bb78;
    color: white;
}

.role-associate {
    background: #e2e3e5;
    color: #555;
}

/* 하단 탭 네비게이션 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 60px;
    font-size: 11px;
}

.bottom-nav-item:hover {
    background: #f8f9fa;
    color: #667eea;
}

.bottom-nav-item.active {
    color: #667eea;
    font-weight: 600;
}

.bottom-nav-icon {
    font-size: 22px;
    margin-bottom: 4px;
}

.bottom-nav-label {
    font-size: 11px;
    white-space: nowrap;
}

/* 하단 탭이 있을 때 컨테이너에 여백 추가 */
body.has-bottom-nav {
    padding-bottom: 70px;
}

body.has-bottom-nav .container {
    margin-bottom: 20px;
}

/* 햄버거 메뉴 */
.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s;
}

.hamburger-menu:hover {
    background: #f8f9fa;
}

/* 통계 탭 스타일 */
.stats-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e1e1e1;
}

.stats-tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.stats-tab-btn:hover {
    background: #f8f9fa;
    color: #667eea;
}

.stats-tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

/* 통계 테이블 */
.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th {
    background: #667eea;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    font-size: 14px;
    color: white;
}

.stats-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.stats-table tr:hover {
    background: #f8f9fa;
}

/* 순위 뱃지 */
.rank-badge {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 13px;
}

.rank-1 {
    background: #ffd700;
    color: #333;
}

.rank-2 {
    background: #c0c0c0;
    color: #333;
}

.rank-3 {
    background: #cd7f32;
    color: white;
}

.rank-other {
    background: #e2e3e5;
    color: #666;
}

/* 팀 뱃지 */
.team-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    margin-left: 5px;
}

.team-purple { background: #667eea; }
.team-blue { background: #3182ce; }
.team-green { background: #48bb78; }
.team-red { background: #f56565; }
.team-orange { background: #ed8936; }
.team-pink { background: #d53f8c; }
.team-gray { background: #999; }

/* 반응형 */
@media (max-width: 768px) {
    /* 전체 레이아웃 최적화 */
    .container {
        padding: 0 12px;
        margin: 30px auto;
    }

    .nav-container {
        padding: 0 12px;
        gap: 6px;
    }

    .card {
        padding: 15px;
    }

    .welcome-section h2 {
        font-size: 20px;
    }

    .welcome-section p {
        font-size: 13px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }

    .nav-menu {
        gap: 6px;
        flex-wrap: nowrap;
    }

    .nav-menu span {
        font-size: 12px;
        max-width: 80px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-container h1 {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 50%;
        flex-shrink: 1;
        min-width: 0;
    }

    .btn-logout {
        padding: 6px 12px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hamburger-menu {
        display: block;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .attendance-list {
        max-height: 300px;
    }

    .attendance-stats {
        flex-direction: row;
        gap: 6px;
        flex-wrap: wrap;
    }

    .attendance-stats span {
        font-size: 11px;
        padding: 4px 8px;
    }

    .schedule-card-header h3 {
        font-size: 14px;
    }

    .tab-btn {
        font-size: 11px;
        padding: 8px 6px;
    }

    .schedule-card-header {
        padding: 12px;
    }

    .schedule-card-body {
        padding: 0 12px 12px 12px;
    }

    .member-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }

    .member-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .member-name {
        flex-wrap: wrap;
        font-size: 14px;
    }

    .role-badge {
        font-size: 9px;
        padding: 2px 5px;
    }

    /* 하단 탭 네비게이션 최적화 */
    .bottom-nav {
        padding: 5px 0 calc(5px + env(safe-area-inset-bottom));
    }

    .bottom-nav-item {
        padding: 5px 6px;
        min-width: 45px;
    }

    .bottom-nav-icon {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .bottom-nav-label {
        font-size: 9px;
    }

    /* 통계 테이블 모바일 최적화 */
    .stats-table {
        font-size: 11px;
    }

    .stats-table th,
    .stats-table td {
        padding: 6px 4px;
        font-size: 11px;
    }

    .stats-tab-btn {
        font-size: 11px;
        padding: 8px 5px;
    }

    .rank-badge {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 10px;
    }

    .team-badge {
        font-size: 9px;
        padding: 2px 5px;
    }

    /* 버튼 크기 조정 */
    .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .btn-sm {
        padding: 5px 10px;
        font-size: 11px;
    }

    /* 팀 참석 현황 모바일 최적화 */
    .team-attendance-item {
        padding: 6px 10px;
        gap: 6px;
    }

    .team-attendance-icon,
    .team-attendance-icon-placeholder {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .team-attendance-name {
        font-size: 12px;
    }

    .team-attendance-count {
        font-size: 11px;
    }

    /* 경기 결과 모바일 최적화 */
    .match-result-container {
        padding: 0;
        margin: 10px 0;
    }

    .match-result-header {
        padding: 12px;
    }

    .match-result-logo,
    .match-result-logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .match-result-team-name {
        font-size: 13px;
    }

    .score-number {
        font-size: 26px;
    }

    .score-separator {
        font-size: 18px;
    }

    .team-goals {
        padding: 10px;
    }

    .team-goals-header {
        font-size: 12px;
    }

    .goal-record {
        padding: 6px 0;
        font-size: 12px;
        line-height: 1.5;
    }
}

/* 공지사항/회칙 게시판 */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notice-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.notice-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-body {
    border-top: 1px solid #e0e0e0;
    margin-top: 15px;
}

/* 경기 결과 (네이버 스포츠 스타일) */
.match-result-container {
    margin: 15px 0;
    padding: 2px;
    background: #f8f9fa;
    border-radius: 12px;
}

.match-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
}

.match-result-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.match-result-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.match-result-logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.match-result-team-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.match-result-score {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.score-number {
    font-size: 36px;
    font-weight: 900;
    color: #999;
}

.score-number.winner {
    color: #667eea;
}

.score-separator {
    font-size: 28px;
    font-weight: 700;
    color: #999;
}

.match-goals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-goals {
    background: white;
    padding: 15px;
    border-radius: 8px;
}

.team-goals-header {
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #667eea;
}

.goal-record {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.goal-record:last-child {
    border-bottom: none;
}

.past-match .schedule-card-header {
    background: #fafafa;
}

/* 팀별 참석 현황 */
.team-attendance-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.team-attendance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.team-attendance-item:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-attendance-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.team-attendance-icon-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.team-attendance-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-attendance-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.team-attendance-count {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.team-attendance-count.full {
    color: #48bb78;
    font-weight: 700;
}

/* 데스크톱에서는 하단 탭 숨김 */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }

    body.has-bottom-nav {
        padding-bottom: 0;
    }

    /* PC 버전에서만 엑셀 업로드 카드 표시 */
    .excel-upload-card {
        display: block !important;
    }
}

/* 모바일에서는 엑셀 업로드 카드 숨김 */
@media (max-width: 768px) {
    .excel-upload-card {
        display: none !important;
    }
}
