body{
    font-family: 'Poppins', sans-serif;
    margin:0;
    padding:0;
    font-size: 16px;
    background-color: #0f051d;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hidden {
    display: none;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.app-footer {
    width: 100%;
    text-align: center;
    padding: 14px;
    margin-top: 8px;
    color: #ffffffa2;
    font-size: 12px;
    letter-spacing: 0.5px;
    opacity: 0.7;
}
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: white;
    z-index: 9999;
    backdrop-filter: blur(6px);
    animation: slideIn 0.3s ease;
}

.toast.success {
    backdrop-filter: blur(5px);
    border: 1px solid #600fac;
}

.toast.error {
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.4);
}

.hidden {
    display: none;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}