.hide-everything {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toast-container {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    padding: 10px;
    user-select: none;
}

@media (max-width: 600px) {
    .toast-container {
        width: 100%;
        right: 0;
        bottom: '';
        top: 0;
        pointer-events: none;
    }
}

.toast {
    background-color: #000;
    color: #fff;
    padding: 16px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 10px;
    opacity: 1;
    transition: opacity 0.5s;
    font-size: 16px;
    font-weight: 600;
    filter: drop-shadow(0 10px 10px rgba(0,0,0, 0.3));
    font-family: 'Inter', sans-serif;
}

.fade-out {
    animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}
