﻿/* SweetAlert2 커스터마이징 */
.swal2-popup {
    font-size: 1.0em;
    width: 350px;
    min-height: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* 가로 중앙 정렬 */
}

.swal2-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    color: #dc3545; /* Bootstrap의 danger 색상 사용 */
    /* 또는 다른 옵션:
    color: #ff0000;  순수한 빨간색
    color: #d9534f;  좀 더 부드러운 빨간색
    color: #cc0000;  진한 빨간색
    */
    line-height: 1.4;
}

.swal2-html-container {
    font-size: 1rem;
    margin: 0.5rem 0;
    padding: 0 0.5rem;
    color: #555555;
    line-height: 1.5;
}

.swal2-actions {
    margin: 1rem 0 0.5rem;
}

.swal2-confirm {
    background-color: #007bff;
    border-radius: 0.25rem;
    padding: 0.4rem 1.2rem;
    font-size: 1.0rem;
    min-height: 35px;
    margin: 0;
}

.swal2-confirm:focus {
    box-shadow: none;
}
