﻿.div_modal {
    width: 90%;
    overflow-y: auto;
    max-height: 90%;
}

.text-login {
    width: 127px;
}

/* Dialog 樣式 */
#completionDialog {
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

    #completionDialog::backdrop {
        background-color: rgba(0,0,0,0.3);
    }

/* Overlay 背景 */
.modern-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* 主卡片 */
.modern-popup-card {
    background: #fff;
    border-radius: 16px;
    width: 480px;
    max-width: 90vw;
    padding: 36px 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

/* 成功、錯誤、警告狀態 Icon */
.f-modal-icon {
    border-radius: 50%;
    border: 4px solid gray;
    box-sizing: content-box;
    height: 80px;
    margin: 0px auto;
    padding: 0;
    position: relative;
    width: 80px;
}

    /* Success and Error icon base styles */
    .f-modal-icon.f-modal-success,
    .f-modal-icon.f-modal-error {
        border-color: #A5DC86;
    }

        .f-modal-icon.f-modal-success:after,
        .f-modal-icon.f-modal-success:before,
        .f-modal-icon.f-modal-error:after,
        .f-modal-icon.f-modal-error:before {
            background: #fff;
            content: '';
            height: 120px;
            position: absolute;
            transform: rotate(45deg);
            width: 60px;
        }

        .f-modal-icon.f-modal-success:before,
        .f-modal-icon.f-modal-error:before {
            border-radius: 120px 0 0 120px;
            left: -33px;
            top: -7px;
            transform-origin: 60px 60px;
            transform: rotate(-45deg);
        }

        .f-modal-icon.f-modal-success:after,
        .f-modal-icon.f-modal-error:after {
            border-radius: 0 120px 120px 0;
            left: 30px;
            top: -11px;
            transform-origin: 0 60px;
            transform: rotate(-45deg);
        }

        .f-modal-icon.f-modal-success .f-modal-placeholder,
        .f-modal-icon.f-modal-error .f-modal-placeholder {
            border-radius: 50%;
            border: 4px solid rgba(165, 220, 134, .2);
            box-sizing: content-box;
            height: 80px;
            left: -4px;
            position: absolute;
            top: -4px;
            width: 80px;
            z-index: 2;
        }

        .f-modal-icon.f-modal-success .f-modal-fix,
        .f-modal-icon.f-modal-error .f-modal-fix {
            background-color: #fff;
            height: 90px;
            left: 28px;
            position: absolute;
            top: 8px;
            transform: rotate(-45deg);
            width: 5px;
            z-index: 1;
        }

        .f-modal-icon.f-modal-success .f-modal-line,
        .f-modal-icon.f-modal-error .f-modal-line {
            background-color: #A5DC86;
            border-radius: 2px;
            display: block;
            height: 5px;
            position: absolute;
            z-index: 2;
        }

            .f-modal-icon.f-modal-success .f-modal-line.f-modal-tip,
            .f-modal-icon.f-modal-error .f-modal-line.f-modal-tip {
                left: 14px;
                top: 46px;
                transform: rotate(45deg);
                width: 25px;
            }

            .f-modal-icon.f-modal-success .f-modal-line.f-modal-long,
            .f-modal-icon.f-modal-error .f-modal-line.f-modal-long {
                right: 8px;
                top: 38px;
                transform: rotate(-45deg);
                width: 47px;
            }

    /* Error icon specific styles */
    .f-modal-icon.f-modal-error {
        border-color: #F27474;
    }

        .f-modal-icon.f-modal-error .f-modal-x-mark {
            display: block;
            position: relative;
            z-index: 2;
        }

        .f-modal-icon.f-modal-error .f-modal-placeholder {
            border: 4px solid rgba(200, 0, 0, .2);
        }

        .f-modal-icon.f-modal-error .f-modal-line {
            background-color: #F27474;
            top: 37px;
            width: 47px;
        }

            .f-modal-icon.f-modal-error .f-modal-line.f-modal-left {
                left: 17px;
                transform: rotate(45deg);
            }

            .f-modal-icon.f-modal-error .f-modal-line.f-modal-right {
                right: 16px;
                transform: rotate(-45deg);
            }

    /* Warning icon styles */
    .f-modal-icon.f-modal-warning {
        border-color: #F8BB86;
    }

        .f-modal-icon.f-modal-warning:before {
            animation: pulseWarning 2s linear infinite;
            background-color: #fff;
            border-radius: 50%;
            content: "";
            display: inline-block;
            height: 100%;
            opacity: 0;
            position: absolute;
            width: 100%;
        }

        .f-modal-icon.f-modal-warning:after {
            background-color: #fff;
            border-radius: 50%;
            content: '';
            display: block;
            height: 100%;
            position: absolute;
            width: 100%;
            z-index: 1;
        }

        .f-modal-icon.f-modal-warning .f-modal-body {
            background-color: #F8BB86;
            border-radius: 2px;
            height: 47px;
            left: 50%;
            margin-left: -2px;
            position: absolute;
            top: 10px;
            width: 5px;
            z-index: 2;
        }

        .f-modal-icon.f-modal-warning .f-modal-dot {
            background-color: #F8BB86;
            border-radius: 50%;
            bottom: 10px;
            height: 7px;
            left: 50%;
            margin-left: -3px;
            position: absolute;
            width: 7px;
            z-index: 2;
        }

    .f-modal-icon + .f-modal-icon {
        margin-top: 50px;
    }

/* Animation classes */
.animateSuccessTip {
    animation: animateSuccessTip .75s;
}

.animateSuccessLong {
    animation: animateSuccessLong .75s;
}

.f-modal-icon.f-modal-success.animate:after {
    animation: rotatePlaceholder 4.25s ease-in;
}

.f-modal-icon.f-modal-error.animate:after {
    animation: rotatePlaceholder 4.25s ease-in;
}

.animateErrorIcon {
    animation: animateErrorIcon .5s;
}

.animateXLeft {
    animation: animateXLeft .75s;
}

.animateXRight {
    animation: animateXRight .75s;
}

.scaleWarning {
    animation: scaleWarning 0.75s infinite alternate;
}

.pulseWarningIns {
    animation: pulseWarningIns 0.75s infinite alternate;
}

/* Keyframes */
@keyframes animateSuccessTip {
    0%, 54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessLong {
    0%, 65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes rotatePlaceholder {
    0%, 5% {
        transform: rotate(-45deg);
    }

    100%, 12% {
        transform: rotate(-405deg);
    }
}

@keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes animateXLeft {
    0%, 65% {
        left: 82px;
        top: 95px;
        width: 0;
    }

    84% {
        left: 14px;
        top: 33px;
        width: 47px;
    }

    100% {
        left: 17px;
        top: 37px;
        width: 47px;
    }
}

@keyframes animateXRight {
    0%, 65% {
        right: 82px;
        top: 95px;
        width: 0;
    }

    84% {
        right: 14px;
        top: 33px;
        width: 47px;
    }

    100% {
        right: 16px;
        top: 37px;
        width: 47px;
    }
}

@keyframes scaleWarning {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulseWarning {
    0% {
        background-color: #fff;
        transform: scale(1);
        opacity: 0.5;
    }

    30% {
        background-color: #fff;
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        background-color: #F8BB86;
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulseWarningIns {
    0% {
        background-color: #F8D486;
    }

    100% {
        background-color: #F8BB86;
    }
}

/* 標題與內容 */
.popup-title {
    position: relative;
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.popup-text {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* 按鈕組 */
.button-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 按鈕 */
.modern-btn {
    background-color: #2F80ED;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .modern-btn:hover {
        box-shadow: 0 4px 12px rgba(47,128,237,0.4);
        background-color: #1e70d6;
        transform: translateY(-1px);
    }

/* 動畫效果 */
@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 響應式設計 */
@media (max-width: 480px) {
    .modern-popup-card {
        width: 320px;
        padding: 28px 20px;
    }

    .popup-title {
        font-size: 20px;
    }

    .popup-text {
        font-size: 14px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .modern-btn {
        width: 100%;
        max-width: 200px;
    }
}
