/* TEDIV ALERT (replaces browser alert()) */
.tediv-alert {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.tediv-alert.show {
    display: flex;
}

.tediv-alert-box {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(0,164,239,.35);
    box-shadow: 0 0 25px rgba(0,164,239,.25);
    border-radius: 14px;
    padding: 25px 30px;
    width: 90%;
    max-width: 380px;
    color: white;
    text-align: center;
}

.tediv-alert-box h3 {
    color: #00a4ef;
    margin-bottom: 12px;
}

#tediv-alert-close {
    margin-top: 15px;
    width: 100%;
    padding: 10px 0;
    background: #1e88e5;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}