@charset "utf-8";
/* CSS Document */
/* OVERLAY */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);

    z-index: 99998;
}

/* MODAL */
.confirm-box {
   position: fixed;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 340px;

    background: #f2f2f2;
    border: 2px solid #696969;
    border-radius: 14px;

    box-shadow: 0 25px 80px rgba(0,0,0,0.2);

    overflow: hidden;
    z-index: 99999;

    animation: confirmFade 0.2s ease forwards;
}

/* ANIMATION (no transform conflict) */
@keyframes confirmFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* HEADER */
.confirm-header {
    background: #696969;
    color: #ffbf00;

    padding: 10px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* BODY */
.confirm-body {
    padding: 14px;
    font-size: 14px;
    color: #303030;
    background: #f5f5f5;
}

/* BUTTONS */
.confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    padding: 12px;
    background: #f5f5f5;
}

.confirm-actions button {
    padding: 6px 14px;
    border-radius: 8px;
    border: 2px solid #696969;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.btn-no {
    background: #f2f2f2;
    color: #333;
}

.btn-no:hover {
    background: #ddd;
}

.btn-yes {
    background: #ffbf00;
    color: #111;
    border-color: #ffbf00;
}

.btn-yes:hover {
    filter: brightness(0.9);
}

/* HIDDEN */
.hidden {
    display: none;
}
/* TOAST */
/* CENTER STACK */
#toastContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 99999;
    align-items: center;
}
.toast-notify {
    width: 340px;
    background: #f2f2f2;
    backdrop-filter: blur(12px);

    border-radius: 14px;
    color: #333;

    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    overflow: hidden;

    animation: slideIn 0.25s ease forwards;

    /* NEW: full border */
    border: 2px solid #696969;
}

/* ENTRY */
@keyframes slideIn {
    from {
        transform: translateY(15px) scale(0.96);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* HEADER (4 SHADES DARKER + YELLOW TEXT) */
.toast-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    background: #696969; /* darker than before */
    color: #ffbf00;
}

/* BODY */
.toast-body {
    padding: 12px;
    font-size: 14px;
    color: #303030;
    background: #f5f5f5;
}

/* CLOSE ICON */
.toast-close {
    cursor: pointer;
    color: #ffbf00;
}

.toast-close:hover {
    color: #111;
}

/* PROGRESS BAR (UNCHANGED) */
.toast-progress {
    height: 6px;
    width: 100%;
    background: #ffbf00;
    animation: progress linear forwards;
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
}
}
