/*
Theme Name: GIGZ Smart - QCS
Theme URI: https://quiz.gigz.pk
Author: GIGZ.PK
Author URI: https://gigz.pk
Description: Enterprise-grade question management system for WordPress. Features CSV/Excel imports, P-Value difficulty calibration, and Discrimination Index analytics.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gigz-calibration
*/

@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  
  --color-gigz-dark: #031B14;
  --color-gigz-deep: #053628;
  --color-gigz-teal: #017279;
  --color-gigz-cyan: #2CD5E2;
  --color-gigz-orange: #F8843F;
}

@layer base {
  html {
    --color-gigz-dark: #031B14;
    --color-gigz-deep: #053628;
    --color-gigz-teal: #017279;
    --color-gigz-cyan: #2CD5E2;
    --color-gigz-orange: #F8843F;
    background-color: #FFFFFF;
    color: #031B14;
  }
  body {
    @apply antialiased;
  }
}

@layer components {
  .glass-card {
    @apply bg-white/80 backdrop-blur-md border border-slate-200 shadow-xl shadow-slate-200/50;
  }
  
  .data-row-hover {
    @apply transition-all duration-200 hover:bg-[#2CD5E2]/10 hover:shadow-sm;
  }

  .stat-card-glow {
    @apply relative overflow-hidden;
  }

  .stat-card-glow::after {
    content: '';
    @apply absolute -right-4 -top-4 w-24 h-24 bg-[#017279]/5 blur-3xl rounded-full;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  @apply bg-transparent;
}

::-webkit-scrollbar-thumb {
  @apply bg-slate-200 rounded-full hover:bg-slate-300 transition-colors;
}
