.glass-toast {
    position: fixed;
    top: 40px;
    right: 20px;
    width: 260px;
    padding: 15px;
    border-radius: 16px;

    backdrop-filter: blur(22px) saturate(190%);
    -webkit-backdrop-filter: blur(22px) saturate(190%);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow: 0 8px 30px rgba(0,0,0,0.35);

    color: #30505c;
    font-family: 'shabnam';
    z-index: 999999;
    opacity: 0;
    transform: translateY(40px);
}

.toast-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #30505c;
	font-family: 'shabnam';
    text-shadow: 0 0 6px rgba(255,255,255,0.4);
}

.toast-body {
    font-size: 14px;
    line-height: 1.6;
	 color: #30505c;
	font-family: 'shabnam';
}



