﻿/* 기본 폰트 설정 */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #212529;
}

/* 상단 로고 래핑 */
.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

    .logo-wrap img {
        height: 40px;
        width: auto;
    }

/* 타이틀 그림자 스타일 */
.title-shadow {
    font-size: 2rem;
    color: #14245C;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}


/* 버튼/컬러 관련 */
.bg-pink {
    background-color: #121E60 !important;
}

.btn-primary {
    background-color: #213a8f;
    border-color: #213a8f;
}

.btn-outline-primary {
    color: #213a8f;
    border-color: #213a8f;
}

    .btn-outline-primary:hover {
        background-color: #213a8f;
        color: white;
    }

/* 프로필 편집 버튼 스타일 */
a[href="/Member/Edit"] {
    background-color: #121E60 !important;
    color: white !important;
    border-color: #121E60 !important;
}

a[href="/Member/Edit"]:hover,
a[href="/Member/Edit"]:focus,
a[href="/Member/Edit"]:active {
    background-color: #121E60 !important;
    color: white !important;
    border-color: #121E60 !important;
}

/* 이적 신청하기 버튼 호버 효과 제거 */
.btn-transfer-apply:hover,
.btn-transfer-apply:focus,
.btn-transfer-apply:active {
    background-color: transparent !important;
    color: #6c757d !important;
    border-color: #6c757d !important;
}

/* 반응형 대응 */
@media (max-width: 576px) {
    .title-shadow {
        font-size: 1.4rem;
    }

    .logo-wrap {
        padding: 8px 12px;
    }

        .logo-wrap img {
            height: 36px;
        }
}
