.toast-message {
    position: fixed;
    top: 20px;
    right: -100%;
    background: linear-gradient(135deg, #f77afd 0%, #6a5acd 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(247, 122, 253, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    min-width: 300px;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
}

.toast-message.show {
    right: 20px;
    opacity: 1;
    visibility: visible;
    animation: bounce 0.8s ease-in-out;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-content i {
    font-size: 28px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.toast-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.toast-title {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.5px;
}

.toast-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.toast-close {
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 8px;
}

.toast-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 576px) {
    .toast-message {
        width: calc(100% - 40px);
        max-width: none;
        bottom: 20px;
        top: auto;
        right: 20px;
        left: 20px;
        transform: none;
    }

    .toast-message.show {
        right: 20px;
        transform: none;
    }
} 