﻿/*2025-10-27 장연서 생성
    아키필름 css 공통 따로 관리하려고
*/

body {
}


/* Toast Message Styles */
.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

    .toast-message.show {
        opacity: 1;
        transform: translateY(0);
    }

.toast-error-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #3a1f1f 0%, #632222 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(255, 80, 80, 0.25);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 90, 90, 0.3);
}

    .toast-error-message.show {
        opacity: 1;
        transform: translateY(0);
    }

/* 이미지 리스트 로딩 아이템 스타일 */
.imageListItem.loading {
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.loading-spinner-small {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text-small {
    color: white;
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
}

/*2025-10-30 김현지 모달 css 추가*/
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .modal-overlay.show {
        display: flex;
    }

.modal-container {
    background: #191919;
    border-radius: 15px;
    width: 90%;
    max-width: 390px;
    padding: 20px;
}

.modal-container-with-image {
    background: #191919;
    border-radius: 15px;
    width: 90%;
    max-width: 440px;
    padding: 20px;
}

.custom-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 0px;
    color: #fff;
}
    .custom-modal-content p .hl-strong {
        font-weight: 800;
    }

.custom-modal-content .sub-message {
    font-size: 0.8rem;
    color: #74B0E0;
    text-align: left;
}

.custom-modal-content .sub-message-warning {
    font-size: 0.8rem;
    color: #E07476;
    text-align: left;
}

.modal-actions {
    display: flex;
    justify-content: end;
    gap: 5px;
    margin-top: 20px
}

.modal-btn {
    padding: 0px 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.0rem;
    cursor: pointer;
}

    .modal-btn:hover {
        opacity: 0.9
    }

.modal-btn-cancel {
    background: #5E5E5E;
    color: #fff;
}

.modal-btn-warning {
    background: #E07476;
    color: #191919;
}

.modal-btn-confirm {
    background: #74B0E0;
    color: #191919;
}