/* 회원정보 탭 스타일 */
.member-tabs-container {
    background-color: white;
}

.member-tabs-header {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    background-color: #f8f9fa;
}

.member-tab {
    padding: 15px 25px;
    cursor: pointer;
    background-color: #e8e8e8;
    border: 1px solid #ccc;
    border-bottom: none;
    margin-right: 3px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.member-tab:hover {
    background-color: #d8d8d8;
}

.member-tab.active {
    background-color: white;
    color: #2c3e50;
    border-top: 3px solid #5a8db8;
    border-left: 2px solid #5a8db8;
    border-right: 2px solid #5a8db8;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: -2px;
    z-index: 1;
}

.member-tabs-content {
    padding: 25px;
}

.member-tab-panel {
    display: none;
}

.member-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s;
}

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

/* 탭 내용 공통 스타일 */
.tab-section {
    margin-bottom: 25px;
}

.tab-section-title {
    font-size: 14px;
    font-weight: bold;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #5a8db8;
    margin-bottom: 15px;
}

.tab-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tab-info-table th {
    background-color: #f0f0f0;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #555;
    width: 25%;
    border: 1px solid #ddd;
    font-size: 12px;
}

.tab-info-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    color: #333;
    font-size: 12px;
}

.tab-info-table tr:hover {
    background-color: #f8f9fa;
}

/* 빈 상태 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.empty-state-text {
    font-size: 14px;
    color: #666;
}
