﻿/* 파일 경로: wwwroot/css/pages/Charge.css */

/* 메인 탭 메뉴 스타일 (Index.css에서 가져옴) */
.taro_btn {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

    .taro_btn .fnav {
        text-align: center;
        width: auto;
    }

        .taro_btn .fnav ul {
            background: #e9ecef;
            border-radius: 25px;
            padding: 5px;
            display: inline-flex;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
            list-style: none;
            margin: 0;
        }

        .taro_btn .fnav li {
            width: auto;
            margin: 0;
        }

            .taro_btn .fnav li a {
                background: none;
                border: none;
                border-radius: 20px;
                color: #555;
                cursor: pointer;
                display: block;
                font-size: 1.6rem;
                font-weight: 500;
                letter-spacing: -0.5px;
                line-height: 1.2;
                margin: 0;
                padding: 10px 25px;
                position: relative;
                text-align: center;
                transition: all 0.3s ease-in-out;
                white-space: nowrap;
                text-decoration: none;
            }

                .taro_btn .fnav li a.active,
                .taro_btn .fnav li a:hover {
                    background: #ffffff;
                    color: #7d429a;
                    font-weight: bold;
                    box-shadow: 0 3px 8px rgba(0,0,0,0.12), 0 3px 1px rgba(0,0,0,0.04);
                }

                .taro_btn .fnav li a.active {
                    transform: scale(1.05);
                }

/* 마이페이지 서브메뉴 스타일 */
.mypage-subnav-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mypage-subnav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .mypage-subnav-list a {
        padding: 1rem 1.5rem;
        font-size: 1.5rem;
        font-weight: 500;
        color: #555;
        text-decoration: none;
        border-radius: 8px;
        transition: background-color 0.2s;
    }

        .mypage-subnav-list a:hover {
            background-color: #f8f9fa;
            color: #000;
        }

/* 무통장 입금 및 안내 박스 스타일 */
.info-container {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2.5rem;
}

    .info-container .content-section-title {
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

.bank-info-box {
    background-color: #fdf5e6;
    border: 1px solid #e6ddc9;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .bank-info-box .icon {
        font-size: 4rem;
        color: #7d429a;
    }

    .bank-info-box .details p {
        margin: 0 0 0.5rem 0;
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .bank-info-box .details strong {
        font-weight: 600;
        min-width: 80px;
        display: inline-block;
    }

.payment-placeholder {
    margin-top: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background-color: #f8f9fa;
}

    .payment-placeholder .icon {
        font-size: 4rem;
        color: #7d429a;
        margin-bottom: 1.5rem;
    }

    .payment-placeholder h2 {
        font-size: 2.2rem;
        color: #333;
        font-weight: 600;
        margin-bottom: 1rem;
    }
