/* Thanks Toast Notification Styles */

.thanks-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    min-width: 320px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.thanks-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.thanks-toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
}

.thanks-toast-icon {
    font-size: 28px;
    flex-shrink: 0;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.thanks-toast-body {
    flex: 1;
    min-width: 0;
}

.thanks-toast-title {
    font-weight: bold;
    font-size: 1.05em;
    margin-bottom: 6px;
}

.thanks-toast-message {
    font-size: 0.9em;
    opacity: 0.95;
    line-height: 1.4;
}

.thanks-toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.thanks-toast-close:hover {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .thanks-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }

    .thanks-toast-content {
        padding: 12px;
    }

    .thanks-toast-icon {
        font-size: 24px;
    }

    .thanks-toast-title {
        font-size: 1em;
    }

    .thanks-toast-message {
        font-size: 0.85em;
    }
}