/* 탭 네비게이션 스타일 */
.tab-navigation {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: 150px;
    padding: 16px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover {
    border-color: #FF8C42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);
    color: white;
    border-color: #FF8C42;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

/* 탭 아이콘 */
.tab-icon {
    font-size: 1.2rem;
    display: inline-block;
}

/* 탭 텍스트 */
.tab-text-full {
    display: inline-block;
}

.tab-text-short {
    display: none;
}

/* 태블릿 */
@media (max-width: 768px) {
    .tab-navigation {
        gap: 10px;
    }
    
    .tab-btn {
        min-width: 130px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* 모바일 - 3개 버튼 한 줄 */
@media (max-width: 600px) {
    .tab-navigation {
        flex-direction: row !important;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 0 !important;
        padding: 12px 8px !important;
        font-size: 0.85rem !important;
        flex-direction: column;
        gap: 4px;
    }
    
    .tab-icon {
        font-size: 1.4rem;
        margin: 0;
    }
    
    .tab-text-full {
        display: none;
    }
    
    .tab-text-short {
        display: block;
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.2;
        white-space: nowrap;
    }
}

/* 작은 모바일 */
@media (max-width: 400px) {
    .tab-btn {
        padding: 10px 6px !important;
        font-size: 0.75rem !important;
    }
    
    .tab-icon {
        font-size: 1.2rem;
    }
    
    .tab-text-short {
        font-size: 0.75rem;
    }
}
