/*==================================
* Author        : "Ruhi.Mahmud"
* Template Name : Beetles 2025
* Version       : 1.0
==================================== */

/*==================================
font-family: 'sans-serif', sans-serif;
font-family: 'Arial', tahoma;
==================================== */


/*=========== TABLE OF CONTENTS ===========
1.  General css (Reset code)

==========================================*/

/*-------------------------------------
		1.General css 
--------------------------------------*/
* {
      font-family: "{{font}}", sans-serif;
    }

    ::-webkit-scrollbar {
      display: none;
    }

    .highlighted-section {
      outline: 2px solid #3F20FB;
      background-color: rgba(63, 32, 251, 0.1);
    }

    .edit-button {
      position: absolute;
      z-index: 1000;
    }

   :root {
      /* Base colors */
      --color-base: #ffffff;
      --color-base-50: #f9fafb;
      --color-base-100: #f3f4f6;
      --color-base-200: #e5e7eb;
      --color-base-300: #d1d5db;
      --color-base-400: #9ca3af;
      --color-base-500: #6b7280;
      --color-base-600: #4b5563;  
      --color-base-700: #374151;
      --color-base-800: #1f2937;  
      --color-base-900: #111827;
      --color-base-content: #1f2937;

      /* Primary colors */
      --color-primary: #3b82f6;
      --color-primary-50: #eff6ff;
      --color-primary-100: #dbeafe;
      --color-primary-200: #bfdbfe;
      --color-primary-300: #93c5fd;
      --color-primary-400: #60a5fa;
      --color-primary-500: #3b82f6;
      --color-primary-600: #2563eb;
      --color-primary-700: #1d4ed8;
      --color-primary-800: #1e40af;
      --color-primary-900: #1e3a8a;
      --color-primary-focus: #2563eb;
      --color-primary-content: #ffffff;

      /* Secondary colors */
      --color-secondary: #8b5cf6;
      --color-secondary-50: #f5f3ff;
      --color-secondary-100: #ede9fe;
      --color-secondary-200: #ddd6fe;
      --color-secondary-300: #c4b5fd;
      --color-secondary-400: #a78bfa;
      --color-secondary-500: #8b5cf6;
      --color-secondary-600: #7c3aed;
      --color-secondary-700: #6d28d9;
      --color-secondary-800: #5b21b6;
      --color-secondary-900: #4c1d95;
      --color-secondary-focus: #7c3aed;
      --color-secondary-content: #ffffff;

      /* Accent colors */
      --color-accent: #f472b6;
      --color-accent-50: #fdf2f8;
      --color-accent-100: #fce7f3;
      --color-accent-200: #fbcfe8;
      --color-accent-300: #f9a8d4;
      --color-accent-400: #f472b6;
      --color-accent-500: #ec4899;
      --color-accent-600: #db2777;
      --color-accent-700: #be185d;
      --color-accent-800: #9d174d;
      --color-accent-900: #831843;
      --color-accent-focus: #db2777;
      --color-accent-content: #ffffff;

      /* Neutral colors */
      --color-neutral: #6b7280;
      --color-neutral-50: #f9fafb;
      --color-neutral-100: #f3f4f6;
      --color-neutral-200: #e5e7eb;
      --color-neutral-300: #d1d5db;
      --color-neutral-400: #9ca3af;
      --color-neutral-500: #6b7280;
      --color-neutral-600: #4b5563;
      --color-neutral-700: #374151;
      --color-neutral-800: #1f2937;
      --color-neutral-900: #111827;
      --color-neutral-focus: #4b5563;
      --color-neutral-content: #ffffff;

      /* Info colors */
      --color-info: #3b82f6;
      --color-info-50: #eff6ff;
      --color-info-100: #dbeafe;
      --color-info-200: #bfdbfe;
      --color-info-300: #93c5fd;
      --color-info-400: #60a5fa;
      --color-info-500: #3b82f6;
      --color-info-600: #2563eb;
      --color-info-700: #1d4ed8;
      --color-info-800: #1e40af;
      --color-info-900: #1e3a8a;
      --color-info-focus: #2563eb;
      --color-info-content: #ffffff;

      /* Success colors */
      --color-success: #10b981;
      --color-success-50: #ecfdf5;
      --color-success-100: #d1fae5;
      --color-success-200: #a7f3d0;
      --color-success-300: #6ee7b7;
      --color-success-400: #34d399;
      --color-success-500: #10b981;
      --color-success-600: #059669;
      --color-success-700: #047857;
      --color-success-800: #065f46;
      --color-success-900: #064e3b;
      --color-success-focus: #059669;
      --color-success-content: #ffffff;

      /* Warning colors */
      --color-warning: #f59e0b;
      --color-warning-50: #fffbeb;
      --color-warning-100: #fef3c7;
      --color-warning-200: #fde68a;
      --color-warning-300: #fcd34d;
      --color-warning-400: #fbbf24;
      --color-warning-500: #f59e0b;
      --color-warning-600: #d97706;
      --color-warning-700: #b45309;
      --color-warning-800: #92400e;
      --color-warning-900: #78350f;
      --color-warning-focus: #d97706;
      --color-warning-content: #ffffff;

      /* Error colors */
      --color-error: #ef4444;
      --color-error-50: #fef2f2;
      --color-error-100: #fee2e2;
      --color-error-200: #fecaca;
      --color-error-300: #fca5a5;
      --color-error-400: #f87171;
      --color-error-500: #ef4444;
      --color-error-600: #dc2626;
      --color-error-700: #b91c1c;
      --color-error-800: #991b1b;
      --color-error-900: #7f1d1d;
      --color-error-focus: #dc2626;
      --color-error-content: #ffffff;
    }

    /* Dark theme */
    .dark {
      /* Base colors */
      --color-base: #1f2937;
      --color-base-50: #111827;
      --color-base-100: #1f2937;
      --color-base-200: #374151;
      --color-base-300: #4b5563;
      --color-base-400: #6b7280;
      --color-base-500: #9ca3af;
      --color-base-600: #d1d5db;
      --color-base-700: #e5e7eb;
      --color-base-800: #f3f4f6;
      --color-base-900: #f9fafb;
      --color-base-content: #f9fafb;

      /* Primary colors */
      --color-primary: #60a5fa;
      --color-primary-50: #1e3a8a;
      --color-primary-100: #1e40af;
      --color-primary-200: #1d4ed8;
      --color-primary-300: #2563eb;
      --color-primary-400: #3b82f6;
      --color-primary-500: #60a5fa;
      --color-primary-600: #93c5fd;
      --color-primary-700: #bfdbfe;
      --color-primary-800: #dbeafe;
      --color-primary-900: #eff6ff;
      --color-primary-focus: #3b82f6;
      --color-primary-content: #1f2937;

      /* Secondary colors */
      --color-secondary: #a78bfa;
      --color-secondary-50: #4c1d95;
      --color-secondary-100: #5b21b6;
      --color-secondary-200: #6d28d9;
      --color-secondary-300: #7c3aed;
      --color-secondary-400: #8b5cf6;
      --color-secondary-500: #a78bfa;
      --color-secondary-600: #c4b5fd;
      --color-secondary-700: #ddd6fe;
      --color-secondary-800: #ede9fe;
      --color-secondary-900: #f5f3ff;
      --color-secondary-focus: #8b5cf6;
      --color-secondary-content: #1f2937;

      /* Accent colors */
      --color-accent: #f472b6;
      --color-accent-50: #831843;
      --color-accent-100: #9d174d;
      --color-accent-200: #be185d;
      --color-accent-300: #db2777;
      --color-accent-400: #ec4899;
      --color-accent-500: #f472b6;
      --color-accent-600: #f9a8d4;
      --color-accent-700: #fbcfe8;
      --color-accent-800: #fce7f3;
      --color-accent-900: #fdf2f8;
      --color-accent-focus: #ec4899;
      --color-accent-content: #1f2937;

      /* Neutral colors remain the same as light theme */

      /* Info colors */
      --color-info: #60a5fa;
      --color-info-50: #1e3a8a;
      --color-info-100: #1e40af;
      --color-info-200: #1d4ed8;
      --color-info-300: #2563eb;
      --color-info-400: #3b82f6;
      --color-info-500: #60a5fa;
      --color-info-600: #93c5fd;
      --color-info-700: #bfdbfe;
      --color-info-800: #dbeafe;
      --color-info-900: #eff6ff;
      --color-info-focus: #3b82f6;
      --color-info-content: #1f2937;

      /* Success colors */
      --color-success: #34d399;
      --color-success-50: #064e3b;
      --color-success-100: #065f46;
      --color-success-200: #047857;
      --color-success-300: #059669;
      --color-success-400: #10b981;
      --color-success-500: #34d399;
      --color-success-600: #6ee7b7;
      --color-success-700: #a7f3d0;
      --color-success-800: #d1fae5;
      --color-success-900: #ecfdf5;
      --color-success-focus: #10b981;
      --color-success-content: #1f2937;

      /* Warning colors */
      --color-warning: #fbbf24;
      --color-warning-50: #78350f;
      --color-warning-100: #92400e;
      --color-warning-200: #b45309;
      --color-warning-300: #d97706;
      --color-warning-400: #f59e0b;
      --color-warning-500: #fbbf24;
      --color-warning-600: #fcd34d;
      --color-warning-700: #fde68a;
      --color-warning-800: #fef3c7;
      --color-warning-900: #fffbeb;
      --color-warning-focus: #f59e0b;
      --color-warning-content: #1f2937;

      /* Error colors */
      --color-error: #f87171;
      --color-error-50: #7f1d1d;
      --color-error-100: #991b1b;
      --color-error-200: #b91c1c;
      --color-error-300: #dc2626;
      --color-error-400: #ef4444;
      --color-error-500: #f87171;
      --color-error-600: #fca5a5;
      --color-error-700: #fecaca;
      --color-error-800: #fee2e2;
      --color-error-900: #fef2f2;
      --color-error-focus: #ef4444;
      --color-error-content: #1f2937;
    }

.icon-circle {
      display: inline-flex;              /* we will center the icon */
      align-items: center;
      justify-content: center;
      width: 48px;                       /* base size: 48x48 circle */
      height: 48px;
      border-radius: 50%;
      background: #f97316;                  /* solid style default */
      color: #fff;                       /* icon color */
      line-height: 1;                    /* crisper centering */
      text-decoration: none;             /* nice for links */
      transition: transform .15s ease, opacity .15s ease;
    }

.tooltip-bubble {
  position: absolute;
  bottom: 100%;              /* place above the parent */
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.75rem;    /* mb-3 = 12px */
  opacity: 0;
  transition: all 0.3s ease; /* transition-all duration-300 */
  background-color: #f97316; /* bg-orange-500 */
  color: #fff;               /* text-white */
  font-size: 0.875rem;       /* text-sm */
  padding: 0.25rem 0.75rem;  /* py-1 px-3 */
  border-radius: 0.5rem;     /* rounded-lg */
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
}
/* Show on hover */
.group:hover .tooltip-bubble {
  opacity: 1;
}

.bubble-pointer {
  position: absolute;
  top: 100%;             /* place it below the tooltip bubble */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;

  border-left: 8px solid transparent;   /* border-l-[8px] border-l-transparent */
  border-right: 8px solid transparent;  /* border-r-[8px] border-r-transparent */
  border-top: 8px solid #f97316;        /* border-t-[8px] border-t-orange-500 */
}


