﻿/* Body */
.modal-body {

}

/* Icon */
.icon-circle-dismiss {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        border-color: #cbd5e1;
    }

    50% {
        border-color: #e2e8f0;
    }
}

.message-h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0;
}

.title-blink {
    animation: titleBlink 1.2s ease-in-out infinite;
}

@keyframes titleBlink {
    0%, 100% {
        color: #dc2626;
    }

    50% {
        color: #fca5a5;
    }
}

.divider {
    height: 1px;
    background: #f1f4f9;
    margin: 18px 0;
}

/* Info card */
.info-card-dismiss {
    background: #f8f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.info-card-title-dismiss {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #475569;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card-dismiss p {
    color: #4a5568;
    font-size: 12px;
    line-height: 1.8;
    font-family: 'Courier New', monospace;
}

/* Note */
.alert-note-dismiss {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f8f9fc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #94a3b8;
    border-radius: 7px;
    padding: 10px 13px;
    margin-bottom: 22px;
}

    .alert-note-dismiss svg {
        flex-shrink: 0;
        margin-top: 1px;
    }

    .alert-note-dismiss p {
        color: #64748b;
        font-size: 11px;
        line-height: 1.6;
    }

/* Retrying indicator */
.retrying {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dots span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #94a3b8;
    animation: bounce 1.2s ease-in-out infinite;
}

    .dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.7);
        opacity: 0.4;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.retrying-text {
    color: #94a3b8;
    font-size: 10.5px;
    letter-spacing: 0.1em;
}

/* Divider before button */
.btn-divider {
    height: 1px;
    background: #f1f4f9;
    margin-bottom: 18px;
}

/* Button */
.btn-dismiss {
    width: 100%;
    padding: 13px;
    background: #475569 !important;
    border: none;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    transition: all 0.2s;
}

    .btn-dismiss:hover {
        background: #334155;
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(71,85,105,0.2);
    }

    .btn-dismiss:active {
        transform: translateY(0);
    }

/* Footer */
.modal-footer {
    padding: 11px 24px;
    border-top: 1px solid #f1f4f9;
    background: #f8f9fc;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #c0cce0;
    letter-spacing: 0.1em;
}

.mud-message-box .mud-focus-trap.outline-none .mud-focus-trap-child-container.outline-none .mud-dialog-actions div {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}