@charset "UTF-8";

/* 기존 스타일 (현장사역) */
.bg-ministry {
    /* 이미지 + 흰색 50% 투명 막 오버레이 */
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../images/field_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* 미디어 사역 전용 배경 (요청하신 이미지 적용) */
.bg-media-ministry {
    /* 이미지 + 흰색 50% 투명 막 오버레이 */
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../images/media_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.tab-active {
    border-bottom-width: 2px;
    border-color: #c2410c; /* orange-700 */
    color: #9a3412; /* orange-800 */
    font-weight: 700;
}

.tab-inactive {
    border-color: transparent;
    color: #6b7280; /* gray-500 */
}

.tab-inactive:hover {
    color: #111827; /* gray-900 */
    border-color: #d1d5db; /* gray-300 */
}

/* 모달 애니메이션 */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-animate {
    animation: fadeIn 0.2s ease-out;
}

/* 숫자 입력창 스피너 제거 */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}
