/* 마이페이지 모달 디자인 개선 */
#myPageModal .modal-content {
    background-color: #1a1a1a !important;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#myPageModal .modal-header,
#myPageModal .modal-footer {
    border-color: #333 !important;
}

#myPageModal .form-control {
    background-color: #2b2b2b !important;
    border-color: #444 !important;
    color: #eee !important;
}

#myPageModal .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
    border-color: #666 !important;
}

#myPageModal .form-label {
    color: #eee !important;
    font-weight: 500;
}

#myPageModal small.text-info {
    color: #8bb9fe !important;
    font-size: 0.8rem;
}

/* 취소 버튼 스타일 */
#myPageModal .cancel-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

#myPageModal .cancel-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* 로딩 스타일 */
#myPageLoading {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #eee;
}

/* 그라데이션 버튼 스타일 */
.gradient-button {
    background: #fff !important;
    color: #000 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.35rem 1rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}
.gradient-button:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}

/* 기존 primary 버튼 스타일 재정의 */
#myPageModal .btn-primary {
    background: #fff !important;
    color: #000 !important;
    border: none !important;
    border-radius: 8px !important;
}

#myPageModal .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}

/* SweetAlert2 테마 스타일 */
.swal2-popup {
    background-color: #1a1a1a !important;
    color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid #333 !important;
}

.swal2-title {
    color: #fff !important;
    font-weight: 600 !important;
}

.swal2-html-container {
    color: #ddd !important;
}

/* 확인 버튼 - 흰색 배경 */
.swal2-confirm {
    background: #fff !important;
    color: #000 !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

.swal2-confirm:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4) !important;
}

/* 취소 버튼 - 투명 배경에 흰색 테두리 */
.swal2-cancel {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
}

.swal2-cancel:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* 입력 필드 포커스 스타일 통일 */
.form-control:focus {
    border-color: #444 !important;
    box-shadow: 0 0 0 0.25rem rgba(45, 104, 196, 0.25);
} 