/**
 * LifeLift Component - lifelift-core
 * Extracted from: /home/ubuntu/lifelift-mobile-backend/functions/views/partials/lifelift-core.ejs
 * Generated at: 2025-08-10T03:31:05.699Z
 */

/* Extracted style block */
.auth-error-notification {
            position: fixed;
            top: 20px;
            left: 20px;
            right: 20px;
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 8px;
            padding: 16px;
            z-index: 10000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          }
          .error-content {
            display: flex;
            align-items: center;
            gap: 12px;
          }
          .error-icon {
            font-size: 20px;
          }
          .error-message {
            flex: 1;
            color: #dc2626;
            font-size: 14px;
          }
          .error-close {
            background: none;
            border: none;
            font-size: 20px;
            color: #dc2626;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
          @media (max-width: 480px) {
            .auth-error-notification {
              top: 16px;
              left: 16px;
              right: 16px;
            }
          }

/* Extracted style block */
.notification-permission-prompt {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.2s ease-out;
          }
          
          .notification-prompt-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
          }
          
          .notification-prompt-card {
            position: relative;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            max-width: 320px;
            width: 100%;
            overflow: hidden;
            animation: slideUp 0.3s ease-out;
          }
          
          .notification-prompt-content {
            padding: 24px 24px 16px;
            text-align: center;
          }
          
          .notification-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #237920, #1a5f1a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin: 0 auto 16px;
          }
          
          .notification-title {
            font-size: 18px;
            font-weight: 600;
            color: #111827;
            margin: 0 0 8px 0;
          }
          
          .notification-description {
            font-size: 14px;
            color: #6b7280;
            margin: 0;
            line-height: 1.4;
          }
          
          .notification-prompt-actions {
            display: flex;
            border-top: 1px solid #f3f4f6;
          }
          
          .notification-deny-btn,
          .notification-allow-btn {
            flex: 1;
            padding: 16px;
            border: none;
            background: none;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
          }
          
          .notification-deny-btn {
            color: #6b7280;
            border-right: 1px solid #f3f4f6;
          }
          
          .notification-deny-btn:hover {
            background: #f9fafb;
          }
          
          .notification-allow-btn {
            color: #237920;
            font-weight: 600;
          }
          
          .notification-allow-btn:hover {
            background: #f0fdf4;
          }
          
          @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
          }
          
          @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
          }
          
          @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
          }
          
          @media (max-width: 480px) {
            .notification-prompt-card {
              max-width: none;
              margin: 0 16px;
            }
          }

/* Extracted style block */
.notification-success-toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #237920;
            padding: 16px;
            max-width: 400px;
            z-index: 10001;
            animation: slideInRight 0.3s ease-out;
          }
          
          .toast-content {
            display: flex;
            align-items: flex-start;
            gap: 12px;
          }
          
          .toast-icon {
            width: 32px;
            height: 32px;
            background: #dcfce7;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #166534;
            flex-shrink: 0;
          }
          
          .toast-message {
            flex: 1;
          }
          
          .toast-title {
            font-size: 14px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 4px;
          }
          
          .toast-description {
            font-size: 12px;
            color: #6b7280;
            line-height: 1.4;
          }
          
          @keyframes slideInRight {
            from {
              opacity: 0;
              transform: translateX(100%);
            }
            to {
              opacity: 1;
              transform: translateX(0);
            }
          }
          
          @keyframes slideOutRight {
            from {
              opacity: 1;
              transform: translateX(0);
            }
            to {
              opacity: 0;
              transform: translateX(100%);
            }
          }
          
          @media (max-width: 480px) {
            .notification-success-toast {
              top: 16px;
              right: 16px;
              left: 16px;
              max-width: none;
            }
          }


/*# sourceMappingURL=lifelift-core.css.map */