@tailwind base;
@tailwind components;
@tailwind utilities;
html {
  font-size: 16px;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F6F9FA;
  background-attachment: fixed;
  color: #1e293b;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.5);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  border-radius: 10px;
  border: 2px solid rgba(241, 245, 249, 0.5);
}
::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      135deg,
      #764ba2 0%,
      #667eea 100%);
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-dark {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}
.animate-fade-in-up {
  animation: fadeInUp 0.4s ease-out;
}
.animate-scale-in {
  animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.animate-slide-in-up {
  animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
*:focus-visible {
  outline: 3px solid rgba(64, 168, 197, 0.5);
  outline-offset: 2px;
  border-radius: 8px;
}
::selection {
  background-color: rgba(168, 181, 255, 0.3);
  color: #1a202c;
}
::-moz-selection {
  background-color: rgba(168, 181, 255, 0.3);
  color: #1a202c;
}
.bg-gradient-modern {
  background:
    linear-gradient(
      135deg,
      #40A8C5 0%,
      #2E8BA8 100%);
}
.bg-gradient-success {
  background:
    linear-gradient(
      135deg,
      #10B981 0%,
      #059669 100%);
}
.bg-gradient-danger {
  background:
    linear-gradient(
      135deg,
      #EF4444 0%,
      #DC2626 100%);
}
.bg-gradient-info {
  background:
    linear-gradient(
      135deg,
      #40A8C5 0%,
      #5BB8D1 100%);
}
.shadow-modern {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}
.shadow-modern-lg {
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
}
.shadow-glow {
  box-shadow: 0 0 20px rgba(64, 168, 197, 0.5);
}
* {
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
::selection {
  background-color: rgba(168, 181, 255, 0.3) !important;
  color: #1a202c !important;
}
::-moz-selection {
  background-color: rgba(168, 181, 255, 0.3) !important;
  color: #1a202c !important;
}
.App {
  text-align: center;
}
.App-logo {
  height: 40vmin;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}
@media screen and (max-width: 600px) {
  .tableWidth {
    background-color: #E0F4F8;
    border-color: 5px solid #40A8C5;
  }
}
.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}
.App-link {
  color: #40A8C5;
}
@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
