/**
 * 콘텐츠 업로드 모달 전용 스타일
 * update-info-modal.css 구조 참조
 */

.content-location-upload-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-location-upload-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.content-location-upload-modal-container {
    position: relative;
    width: 50rem;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--White);
    border-radius: 0.8rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 5vh auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content-location-upload-modal-header {
    background: linear-gradient(135deg, var(--Mint_300) 0%, var(--Mint_400) 100%);
    color: var(--White);
    padding: 2.4rem;
    text-align: center;
    position: relative;
}

.content-location-upload-modal-header h3 {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--White);
}

.content-location-upload-modal-close {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    background: none;
    border: none;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--White);
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.content-location-upload-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.content-location-upload-modal-body {
    flex: 1;
    padding: 2.4rem 1.2rem 1.2rem;
    overflow-y: auto;
    max-height: calc(90vh - 12rem);
}

.content-location-upload-modal-footer {
    height: 1.2rem;
}

.content-location-upload-loading-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 1.6rem 0;
    color: var(--Blue_400);
    font-weight: 600;
    padding: 2rem;
}

.content-location-upload-buttons {
    display: flex !important;
    flex-direction: row !important;
    padding-top: 1.6rem;
    gap: 1.2rem !important;
    width: 100% !important;
    justify-content: stretch !important;
}

.content-location-upload-buttons .btn {
    border-radius: 0.8rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    flex: 1 !important;
    max-width: none !important;
    height: 4.8rem !important;
    padding: 1.3rem 1.7rem !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    line-height: 2rem !important;
    min-width: 0 !important;
}
