@charset "UTF-8";
:root {
  --primary-color: #667eea;
  --primary-dark: #5568d3;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --text-primary: #2d3748;
  --text-secondary: #718096;
  --bg-primary: #ffffff;
  --bg-secondary: #f7fafc;
  --border-color: #e2e8f0;
  --success-color: #48bb78;
  --error-color: #f56565;
  --warning-color: #ed8936;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  color: #2d3748;
  line-height: 1.6;
  display: flex;
  flex-direction: column; }
  body.login-page {
    background: transparent;
    overflow: hidden; }

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem; }
  .logo img {
    display: block; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center; }
  .nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease; }
    .nav-links a:hover {
      color: #667eea; }

.messages {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 2rem; }

.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease-out; }
  .alert-success {
    background: #c6f6d5;
    color: #22543d;
    border-left: 4px solid #48bb78; }
  .alert-error {
    background: #fed7d7;
    color: #742a2a;
    border-left: 4px solid #f56565; }
  .alert-warning {
    background: #feebc8;
    color: #7c2d12;
    border-left: 4px solid #ed8936; }
  .alert-info {
    background: #bee3f8;
    color: #2c5282;
    border-left: 4px solid #667eea; }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem;
  flex: 1; }
  .login-page .main-content {
    padding: 0;
    min-height: 100vh; }

.container {
  max-width: 1200px;
  margin: 0 auto; }
  .login-page .container {
    max-width: 100%;
    margin: 0;
    padding: 0; }

.footer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  text-align: center;
  color: #718096;
  margin-top: auto; }

.footer-content {
  max-width: 1200px;
  margin: 0 auto; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem; }
  .btn--primary, .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); }
    .btn--primary:hover, .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6); }
  .btn--secondary, .btn-secondary {
    background: #f7fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0; }
    .btn--secondary:hover, .btn-secondary:hover {
      background: #e2e8f0; }

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem; }

.text-center {
  text-align: center; }

.text-primary {
  color: #667eea; }

.text-secondary {
  color: #718096; }

.mt-1 {
  margin-top: 0.5rem; }

.mt-2 {
  margin-top: 1rem; }

.mt-3 {
  margin-top: 1.5rem; }

.mb-1 {
  margin-bottom: 0.5rem; }

.mb-2 {
  margin-bottom: 1rem; }

.mb-3 {
  margin-bottom: 1.5rem; }

.hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.hero-logo {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: block; }

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.hero-subtitle {
  font-size: 1.25rem;
  color: #718096;
  margin-bottom: 2rem;
  line-height: 1.6; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem; }

.feature {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; }
  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block; }

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem; }

.feature-desc {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6; }

.cta-section {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem; }
  .cta-section h2 {
    color: #2d3748;
    margin-bottom: 1rem; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem; }

.welcome-message {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #667eea; }
  .welcome-message h3 {
    color: #2d3748;
    margin-bottom: 0.5rem; }
  .welcome-message p {
    color: #718096;
    margin: 0; }

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 2rem; }

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  max-width: 450px;
  width: 100%;
  animation: fadeInUp 0.6s ease-out; }

.login-header {
  text-align: center;
  margin-bottom: 2.5rem; }

.login-logo {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block; }

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem; }

.login-subtitle {
  color: #718096;
  font-size: 1rem; }

.form-group {
  margin-bottom: 1.5rem; }

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2d3748;
  font-weight: 500;
  font-size: 0.9rem; }

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #2d3748; }
  .form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); }
  .form-input::placeholder {
    color: #718096; }

.input-icon {
  position: relative; }
  .input-icon input {
    padding-left: 2.5rem; }
  .input-icon.password input {
    padding-right: 3rem; }
  .input-icon::before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    opacity: 0.5; }
  .input-icon.username::before {
    content: '👤';
    font-size: 1.2rem; }
  .input-icon.password::before {
    content: '🔒';
    font-size: 1.2rem; }

.password-toggle {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #718096;
  padding: 0.25rem;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  transition: color 0.2s ease, transform 0.2s ease;
  outline: none; }
  .password-toggle:hover {
    color: #667eea;
    transform: translateY(-50%) scale(1.1); }
  .password-toggle:active {
    transform: translateY(-50%) scale(0.95); }
  .password-toggle:focus {
    outline: 2px solid rgba(102, 126, 234, 0.3);
    outline-offset: 2px;
    border-radius: 4px; }

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9rem; }

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem; }
  .remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea; }

.forgot-password {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease; }
  .forgot-password:hover {
    color: #5568d3; }

.login-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden; }
  .login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6); }
  .login-button:active {
    transform: translateY(0); }
  .login-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none; }
  .login-button .loading {
    display: none;
    margin-right: 0.5rem; }
  .login-button.loading .loading {
    display: inline-block; }
  .login-button.loading .button-text {
    opacity: 0.7; }

.divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  color: #718096;
  font-size: 0.9rem; }
  .divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0; }
  .divider span {
    padding: 0 1rem; }

.social-login {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem; }

.social-button {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #2d3748; }
  .social-button:hover {
    border-color: #667eea;
    background: #f7fafc; }

.error-message {
  background: #fed7d7;
  color: #742a2a;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #f56565;
  font-size: 0.9rem;
  display: none; }
  .error-message.show {
    display: block;
    animation: slideIn 0.3s ease-out; }

.signup-link {
  text-align: center;
  margin-top: 2rem;
  color: #718096;
  font-size: 0.9rem; }
  .signup-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600; }
    .signup-link a:hover {
      text-decoration: underline; }

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden; }
  .animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%; }

@keyframes gradientShift {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg); }
  50% {
    transform: translate(-50%, -50%) rotate(180deg); } }

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out; }
  .particle:nth-child(1) {
    width: 30px;
    height: 30px;
    left: 15%;
    top: 10%;
    animation-delay: 2s; }
  .particle:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 30%;
    top: 20%;
    animation-delay: 4s; }
  .particle:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 45%;
    top: 30%;
    animation-delay: 6s; }
  .particle:nth-child(4) {
    width: 60px;
    height: 60px;
    left: 60%;
    top: 40%;
    animation-delay: 8s; }
  .particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 75%;
    top: 50%;
    animation-delay: 10s; }
  .particle:nth-child(6) {
    width: 80px;
    height: 80px;
    left: 90%;
    top: 60%;
    animation-delay: 12s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0); }
  25% {
    transform: translateY(-100px) translateX(50px); }
  50% {
    transform: translateY(-200px) translateX(-50px); }
  75% {
    transform: translateY(-100px) translateX(-100px); } }

@media (max-width: 768px) {
  .navbar {
    padding: 1rem; }
  .nav-container {
    flex-direction: column;
    gap: 1rem; }
  .nav-links {
    flex-direction: column;
    gap: 1rem; }
  .main-content {
    padding: 1rem; }
  .messages {
    padding: 0 1rem; }
  .hero-title {
    font-size: 2rem; }
  .hero-logo {
    font-size: 3.5rem; }
  .hero-subtitle {
    font-size: 1rem; }
  .features {
    grid-template-columns: 1fr; } }

@media (max-width: 640px) {
  .login-card {
    padding: 2rem 1.5rem; }
  .login-title {
    font-size: 1.5rem; }
  .login-logo {
    font-size: 3rem; }
  .social-login {
    grid-template-columns: 1fr; } }

.page-header {
  margin-bottom: 1rem; }
  .page-header h1 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a; }
  .page-header p {
    color: #666;
    font-size: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden; }
  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s; }
  .btn:hover::before {
    width: 300px;
    height: 300px; }
  .btn .btn-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease; }
  .btn:hover .btn-icon {
    transform: scale(1.1); }
  .btn.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); }
    .btn.btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5); }
    .btn.btn-primary:active {
      transform: translateY(0); }
  .btn.btn-secondary {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.3); }
    .btn.btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(113, 128, 150, 0.4); }
    .btn.btn-secondary:active {
      transform: translateY(0); }
  .btn.btn-success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3); }
    .btn.btn-success:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4); }
  .btn.btn-warning {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3); }
    .btn.btn-warning:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(237, 137, 54, 0.4); }
  .btn.btn-danger {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 101, 101, 0.3); }
    .btn.btn-danger:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245, 101, 101, 0.4); }
  .btn.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase; }
  .badge.badge-success {
    background: #d4edda;
    color: #155724; }
  .badge.badge-danger {
    background: #f8d7da;
    color: #721c24; }
  .badge.badge-warning {
    background: #fff3cd;
    color: #856404; }

.form-container {
  max-width: 800px;
  margin: 0 auto; }

.cute-form-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 2px solid #e8e9ff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden; }
  .cute-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%); }

.api-token-form {
  position: relative;
  z-index: 1; }

.form-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #f0f0f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); }
  .form-section:last-of-type {
    margin-bottom: 0; }

.readonly-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 1px dashed #d0d5ff; }

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f5; }
  .section-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }

.section-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2)); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; }

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #f0f0f5;
  transition: all 0.3s ease; }
  .info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    border-color: #d0d5ff; }

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3748;
  font-family: 'Courier New', monospace; }
  .info-value.token-preview {
    color: #667eea;
    word-break: break-all; }

.form-group {
  margin-bottom: 1.5rem; }
  .form-group:last-child {
    margin-bottom: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem; }
  @media (max-width: 640px) {
    .form-row {
      grid-template-columns: 1fr; } }
.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #2d3748;
  font-size: 0.95rem; }

.label-icon {
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 2px rgba(102, 126, 234, 0.2)); }

.required {
  color: #f56565;
  font-weight: 700;
  margin-left: 0.25rem; }

.input-wrapper {
  position: relative; }

.form-input,
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: white;
  color: #2d3748; }
  .form-input:focus,
  .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px); }
  .form-input:hover:not(:focus),
  .form-control:hover:not(:focus) {
    border-color: #cbd5e0; }
  .form-input::placeholder,
  .form-control::placeholder {
    color: #a0aec0; }
  .form-input.form-input-readonly,
  .form-control.form-input-readonly {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    cursor: not-allowed;
    border-color: #e2e8f0; }
    .form-input.form-input-readonly[readonly],
    .form-control.form-input-readonly[readonly] {
      font-family: 'Courier New', monospace; }

.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f56565;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #fff5f5;
  border-left: 3px solid #f56565;
  border-radius: 6px; }
  .error-message.global-error {
    margin-top: 1rem;
    margin-bottom: 1rem; }

.error-icon {
  font-size: 1rem; }

.help-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #718096;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f7fafc;
  border-radius: 6px; }

.help-icon {
  font-size: 1rem; }

.checkbox-group {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f5; }

.cute-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem; }

.form-checkbox {
  display: none; }

.checkbox-label-cute {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease; }
  .checkbox-label-cute:hover {
    border-color: #cbd5e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e0;
  border-radius: 8px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0; }
  .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.2s ease; }

.form-checkbox:checked + .checkbox-label-cute {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: white; }
  .form-checkbox:checked + .checkbox-label-cute .checkbox-custom {
    background: white;
    border-color: white; }
    .form-checkbox:checked + .checkbox-label-cute .checkbox-custom::after {
      transform: translate(-50%, -50%) scale(1);
      color: #667eea; }
  .form-checkbox:checked + .checkbox-label-cute .checkbox-text {
    color: white; }

.checkbox-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #2d3748;
  transition: color 0.3s ease; }

.checkbox-icon {
  font-size: 1.1rem; }

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f5; }
  @media (max-width: 640px) {
    .form-actions {
      flex-direction: column-reverse; }
      .form-actions .btn {
        width: 100%;
        justify-content: center; } }
.page-header .header-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
  animation: float 3s ease-in-out infinite; }

@keyframes float {
  0%, 100% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-10px); } }

.actions-bar {
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-end; }

.tokens-list {
  display: grid;
  gap: 1.5rem; }

.token-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s; }
  .token-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
  .token-card.inactive {
    opacity: 0.7;
    background: #f8f9fa; }

.token-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0; }

.token-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a; }

.token-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap; }

.token-date {
  color: #666;
  font-size: 0.875rem; }

.token-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap; }

.token-details {
  display: grid;
  gap: 0.75rem; }

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0; }

.detail-label {
  font-weight: 500;
  color: #666; }

.detail-value {
  color: #1a1a1a;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem; }
  .detail-value.expired {
    color: #dc3545; }

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0; }

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem; }

.empty-state h2 {
  margin: 0 0 0.5rem 0;
  color: #1a1a1a; }

.empty-state p {
  color: #666;
  margin-bottom: 2rem; }

.success-container {
  max-width: 700px;
  margin: 0 auto; }

.success-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }

.success-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem; }

.success-card h1 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a; }

.success-message {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem; }

.token-display {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem; }

.token-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0; }
  .token-header label {
    font-weight: 500;
    color: #666; }
  .token-header span {
    font-weight: 600;
    color: #1a1a1a; }

.token-value-container {
  margin-top: 1rem; }
  .token-value-container label {
    display: block;
    font-weight: 500;
    color: #666;
    margin-bottom: 0.5rem; }

.token-value-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 2px solid #007bff;
  border-radius: 8px;
  padding: 1rem; }

.token-value {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #1a1a1a;
  word-break: break-all;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none; }

.copy-btn {
  padding: 0.5rem 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap; }
  .copy-btn:hover {
    background: #0056b3; }

.copy-message {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 1.5rem; }
  .copy-message.copy-success {
    color: #28a745; }
  .copy-message.copy-error {
    color: #dc3545; }

.warning-box {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem; }
  .warning-box strong {
    display: block;
    margin-bottom: 0.75rem;
    color: #856404; }
  .warning-box ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #856404; }
  .warning-box li {
    margin-bottom: 0.5rem; }

.token-info {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem; }

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0; }
  .info-row:last-child {
    border-bottom: none; }

.info-label {
  font-weight: 500;
  color: #666; }

.info-value {
  color: #1a1a1a;
  font-family: 'Courier New', monospace; }

.actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; }

.delete-container {
  max-width: 600px;
  margin: 0 auto; }

.delete-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }

.delete-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem; }

.delete-card h1 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a; }

.delete-message {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem; }

.delete-form {
  margin-top: 2rem; }

.unapproved-questions-page {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column; }
  .unapproved-questions-page .page-header {
    margin-bottom: 2rem; }
    .unapproved-questions-page .page-header .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      padding: 0 0.5rem; }
      .unapproved-questions-page .page-header .header-top .back-arrow {
        font-size: 1.5rem;
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 8px;
        background: rgba(102, 126, 234, 0.1); }
        .unapproved-questions-page .page-header .header-top .back-arrow:hover {
          background: rgba(102, 126, 234, 0.2);
          transform: translateX(-2px); }
      .unapproved-questions-page .page-header .header-top h1 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2rem;
        font-weight: 700;
        color: #2d3748;
        margin: 0;
        text-align: center; }
      .unapproved-questions-page .page-header .header-top .notification-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease; }
        .unapproved-questions-page .page-header .header-top .notification-icon:hover {
          transform: scale(1.1);
          box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); }
        .unapproved-questions-page .page-header .header-top .notification-icon .notification-badge {
          color: white;
          font-weight: 700;
          font-size: 0.9rem; }
  .unapproved-questions-page .questions-controls {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
  .unapproved-questions-page .controls-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap; }
  .unapproved-questions-page .score-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.5px; }
  .unapproved-questions-page .rows-per-page-top {
    display: flex;
    align-items: center;
    gap: 0.5rem; }
    .unapproved-questions-page .rows-per-page-top label {
      font-weight: 500;
      color: #4a5568;
      font-size: 0.9rem;
      white-space: nowrap; }
  .unapproved-questions-page .pagination-select-top {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px; }
    .unapproved-questions-page .pagination-select-top:hover {
      border-color: #667eea;
      box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1); }
    .unapproved-questions-page .pagination-select-top:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); }
  .unapproved-questions-page .controls-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto; }
  .unapproved-questions-page .search-form {
    display: inline-flex; }
  .unapproved-questions-page .search-input {
    min-width: 300px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease; }
    .unapproved-questions-page .search-input:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); }
  .unapproved-questions-page .select-all-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem; }
    .unapproved-questions-page .select-all-wrapper label {
      font-weight: 600;
      color: #2d3748;
      cursor: pointer;
      font-size: 0.95rem; }
    .unapproved-questions-page .select-all-wrapper input[type="checkbox"] {
      width: 1.35rem;
      height: 1.35rem;
      cursor: pointer;
      accent-color: #667eea; }
  .unapproved-questions-page #approveButton {
    background: #48bb78;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3); }
    .unapproved-questions-page #approveButton:hover {
      background: #38a169;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4); }
    .unapproved-questions-page #approveButton:active {
      transform: translateY(0); }
    .unapproved-questions-page #approveButton .btn-icon {
      font-size: 1rem; }
  .unapproved-questions-page .table-wrapper {
    flex: 1;
    margin-bottom: 2rem;
    overflow: auto;
    background: white;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    max-height: calc(100vh - 400px); }
    .unapproved-questions-page .table-wrapper::-webkit-scrollbar {
      width: 8px;
      height: 8px; }
    .unapproved-questions-page .table-wrapper::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 8px; }
    .unapproved-questions-page .table-wrapper::-webkit-scrollbar-thumb {
      background: #c1c1c1;
      border-radius: 8px; }
      .unapproved-questions-page .table-wrapper::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8; }
  .unapproved-questions-page .questions-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    background: white;
    table-layout: fixed; }
    .unapproved-questions-page .questions-table thead {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      position: sticky;
      top: 0;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
      .unapproved-questions-page .questions-table thead th {
        padding: 1.25rem 1.5rem;
        text-align: left;
        font-weight: 700;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: none;
        white-space: nowrap;
        position: relative; }
        .unapproved-questions-page .questions-table thead th:first-child {
          border-top-left-radius: 16px;
          padding-left: 2rem; }
        .unapproved-questions-page .questions-table thead th:last-child {
          border-top-right-radius: 16px;
          padding-right: 2rem; }
        .unapproved-questions-page .questions-table thead th:not(:last-child)::after {
          content: '';
          position: absolute;
          right: 0;
          top: 20%;
          height: 60%;
          width: 1px;
          background: rgba(255, 255, 255, 0.3); }
        .unapproved-questions-page .questions-table thead th .header-checkbox-wrapper {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.75rem; }
          .unapproved-questions-page .questions-table thead th .header-checkbox-wrapper input[type="checkbox"] {
            width: 1.35rem;
            height: 1.35rem;
            cursor: pointer;
            accent-color: white; }
          .unapproved-questions-page .questions-table thead th .header-checkbox-wrapper .header-label {
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: white; }
    .unapproved-questions-page .questions-table tbody tr {
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.2s ease;
      background: white; }
      .unapproved-questions-page .questions-table tbody tr:hover {
        background-color: #f8f9ff;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
        transform: translateY(-1px); }
      .unapproved-questions-page .questions-table tbody tr:last-child {
        border-bottom: none; }
      .unapproved-questions-page .questions-table tbody tr:not(:last-child) {
        border-bottom: 1px solid #e8e8e8; }
    .unapproved-questions-page .questions-table tbody td {
      padding: 1.5rem 1.5rem;
      vertical-align: top;
      border-right: 1px solid #f5f5f5;
      word-wrap: break-word;
      overflow-wrap: break-word; }
      .unapproved-questions-page .questions-table tbody td:first-child {
        padding-left: 2rem;
        text-align: center; }
      .unapproved-questions-page .questions-table tbody td:last-child {
        padding-right: 2rem;
        border-right: none; }
  .unapproved-questions-page .col-checkbox {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    text-align: center;
    position: sticky;
    left: 0;
    background: inherit;
    z-index: 6;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.08); }
    .unapproved-questions-page .col-checkbox input[type="checkbox"] {
      width: 1.35rem;
      height: 1.35rem;
      cursor: pointer;
      accent-color: #667eea; }
  .unapproved-questions-page thead .col-checkbox {
    z-index: 11;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
  .unapproved-questions-page .col-question {
    width: 28%;
    min-width: 280px; }
  .unapproved-questions-page .col-category {
    width: 18%;
    min-width: 180px; }
  .unapproved-questions-page .col-sql {
    width: 54%;
    min-width: 400px; }
  .unapproved-questions-page .question-text {
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%; }
  .unapproved-questions-page .category-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    color: #2d3748; }
    .unapproved-questions-page .category-select:hover {
      border-color: #667eea;
      box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1); }
    .unapproved-questions-page .category-select:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15); }
  .unapproved-questions-page .sql-code-wrapper {
    width: 100%; }
  .unapproved-questions-page .sql-code {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Courier New', 'Monaco', 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    color: #2d3748;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: auto;
    margin: 0; }
  .unapproved-questions-page .empty-row:hover {
    background-color: white !important;
    transform: none !important;
    box-shadow: none !important; }
  .unapproved-questions-page .empty-row .empty-table-message {
    text-align: center;
    padding: 5rem 2rem !important;
    border: none !important;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%); }
    .unapproved-questions-page .empty-row .empty-table-message .empty-state {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      color: #4a5568; }
      .unapproved-questions-page .empty-row .empty-table-message .empty-state .empty-icon {
        font-size: 6rem;
        margin-bottom: 1.5rem;
        color: #f56565;
        font-weight: 700;
        line-height: 1;
        opacity: 0.8; }
      .unapproved-questions-page .empty-row .empty-table-message .empty-state h2 {
        font-size: 1.75rem;
        font-weight: 700;
        color: #2d3748;
        margin: 0 0 0.75rem 0;
        letter-spacing: -0.5px; }
      .unapproved-questions-page .empty-row .empty-table-message .empty-state p {
        font-size: 1.05rem;
        color: #718096;
        margin: 0;
        max-width: 500px; }
  .unapproved-questions-page .pagination-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem; }
  .unapproved-questions-page .pagination-footer-single {
    justify-content: center; }
  .unapproved-questions-page .pagination-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap; }
  .unapproved-questions-page .pagination-text {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500; }
    .unapproved-questions-page .pagination-text strong {
      color: #2d3748;
      font-weight: 600; }
  .unapproved-questions-page .pagination-per-page {
    display: flex;
    align-items: center;
    gap: 0.5rem; }
    .unapproved-questions-page .pagination-per-page label {
      color: #4a5568;
      font-size: 0.875rem;
      font-weight: 500;
      white-space: nowrap; }
  .unapproved-questions-page .pagination-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px; }
    .unapproved-questions-page .pagination-select:hover {
      border-color: #667eea;
      box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1); }
    .unapproved-questions-page .pagination-select:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); }
  .unapproved-questions-page .pagination-wrapper {
    display: flex;
    align-items: center; }
  .unapproved-questions-page .pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap; }
  .unapproved-questions-page .pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.875rem;
    min-width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
    .unapproved-questions-page .pagination-btn:hover:not(.pagination-btn-disabled) {
      background: #667eea;
      color: white;
      border-color: #667eea;
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3); }
    .unapproved-questions-page .pagination-btn:active:not(.pagination-btn-disabled) {
      transform: translateY(0);
      box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2); }
  .unapproved-questions-page .pagination-btn-nav {
    padding: 0.5rem 1rem;
    font-weight: 600; }
  .unapproved-questions-page .pagination-btn-page {
    min-width: 2.5rem;
    font-weight: 500; }
  .unapproved-questions-page .pagination-btn-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.4);
    cursor: default; }
    .unapproved-questions-page .pagination-btn-active:hover {
      transform: none;
      box-shadow: 0 2px 6px rgba(102, 126, 234, 0.4); }
  .unapproved-questions-page .pagination-btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f7fafc;
    color: #a0aec0; }
  .unapproved-questions-page .pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0.5rem; }
  .unapproved-questions-page .pagination-ellipsis {
    padding: 0 0.5rem;
    color: #a0aec0;
    font-weight: 600;
    user-select: none; }
  @media (max-width: 768px) {
    .unapproved-questions-page .pagination-footer {
      flex-direction: column;
      align-items: stretch;
      padding: 1rem; }
    .unapproved-questions-page .pagination-info {
      justify-content: center;
      margin-bottom: 1rem;
      flex-direction: column;
      gap: 1rem; }
    .unapproved-questions-page .pagination-per-page {
      justify-content: center; }
    .unapproved-questions-page .pagination-wrapper {
      justify-content: center; }
    .unapproved-questions-page .pagination-controls {
      justify-content: center;
      width: 100%; }
    .unapproved-questions-page .pagination-btn-nav {
      padding: 0.5rem 0.75rem;
      font-size: 0.8rem; }
    .unapproved-questions-page .pagination-pages {
      margin: 0 0.25rem;
      gap: 0.25rem; }
    .unapproved-questions-page .pagination-btn-page {
      min-width: 2rem;
      height: 2rem;
      padding: 0.25rem 0.5rem;
      font-size: 0.8rem; }
    .unapproved-questions-page .questions-controls {
      justify-content: center; }
    .unapproved-questions-page .search-form {
      flex-direction: column;
      width: 100%; }
      .unapproved-questions-page .search-form .search-input {
        width: 100%; }
    .unapproved-questions-page .approve-actions {
      flex-direction: column;
      gap: 1rem;
      align-items: stretch; }
    .unapproved-questions-page .table-wrapper {
      overflow-x: scroll;
      -webkit-overflow-scrolling: touch; }
    .unapproved-questions-page .questions-table {
      min-width: 800px; }
      .unapproved-questions-page .questions-table thead {
        position: relative; }
      .unapproved-questions-page .questions-table tbody tr {
        display: block;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
        .unapproved-questions-page .questions-table tbody tr td {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0.75rem 0;
          border: none;
          border-bottom: 1px solid #f0f0f0; }
          .unapproved-questions-page .questions-table tbody tr td:first-child, .unapproved-questions-page .questions-table tbody tr td:last-child {
            padding-left: 0;
            padding-right: 0; }
          .unapproved-questions-page .questions-table tbody tr td:last-child {
            border-bottom: none; }
          .unapproved-questions-page .questions-table tbody tr td::before {
            content: attr(data-label);
            font-weight: 600;
            color: #667eea;
            margin-right: 1rem;
            min-width: 100px;
            text-align: left; }
      .unapproved-questions-page .questions-table thead {
        display: none; }
      .unapproved-questions-page .questions-table .col-checkbox {
        position: relative;
        left: auto;
        background: transparent; }
        .unapproved-questions-page .questions-table .col-checkbox::before {
          content: 'Select'; } }
.questions-table {
  width: 100%; }
