
.toast-container {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 350px;
    pointer-events: none;
}

.toast-item {
    background: #10b981;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 100%;
}

.toast-item.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-item.hide {
    transform: translateX(100%);
    opacity: 0;
}

.toast-item.error {
    background: #ef4444;
}

.toast-item.warning {
    background: #f59e0b;
}

.toast-item.success {
    background: #10b981;
}

.toast-message {
    flex: 1;
    line-height: 1.4;
}

.toast-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.toast {
    display: none !important;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================
   NOTIFICATION GOOGLE MEET
   ========================================== */

.meet-link-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10002;
    max-width: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
    overflow: hidden;
}

.meet-notification-content {
    padding: 0;
}

.meet-notification-header {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.meet-icon {
    font-size: 24px;
}

.meet-notification-header strong {
    flex: 1;
}

.meet-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.meet-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.meet-notification-body {
    padding: 20px;
}

.meet-notification-body p {
    margin: 0 0 12px 0;
    color: #334155;
    font-size: 14px;
}

.meet-link-container {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.meet-link-input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    color: #1e40af;
    background: #f1f5f9;
}

.copy-meet-btn,
.open-meet-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.copy-meet-btn {
    background: #f1f5f9;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.copy-meet-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.open-meet-btn {
    background: #4285f4;
    color: white;
}

.open-meet-btn:hover {
    background: #3367d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

.meet-attendees {
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 13px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
