/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    top: 16px;
    right: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px;
    width: 100%;
    max-width: 320px;
    z-index: 9999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification-popup.notification-show {
    transform: translateY(0);
    opacity: 1;
}

.notification-popup.notification-hide {
    transform: translateY(-100%);
    opacity: 0;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-right: 24px;
}

.notification-icon {
    margin-right: 12px;
    color: #4CAF50;
}

.notification-message {
    flex-grow: 1;
}

.notification-title {
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 4px;
    font-size: 14px;
}

.notification-text {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.notification-close:hover {
    color: #666;
}

.notification-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.notification-button {
    flex: 1;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
}

.notification-button-primary {
    background: #1a73e8;
    color: white;
    border: none;
}

.notification-button-primary:hover {
    background: #1557b0;
}

.notification-button-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.notification-button-secondary:hover {
    background: #f5f5f5;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .notification-popup {
        top: auto;
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
} 