.toast-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 3000;
    display: none;
    min-width: 320px;
    animation: slideInRight 0.3s ease-out;
}

.toast-notification.show {
    display: block;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.error{
    background: #b92410;
}

.toast-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.toast-message {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.toast-share-code {
    margin-top: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-code-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.share-code-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .toast-notification {
        top: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
    }
}