/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: hsl(210 40% 96.1%);
  color: hsl(222.2 84% 4.9%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Button styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button-primary {
  background-color: hsl(221.2 83.2% 53.3%);
  color: white;
}

.button-primary:hover:not(:disabled) {
  background-color: hsl(221.2 83.2% 45%);
}

.button-secondary {
  background-color: hsl(210 40% 96.1%);
  color: hsl(222.2 47.4% 11.2%);
}

.button-secondary:hover:not(:disabled) {
  background-color: hsl(210 40% 90%);
}

.button-outline {
  background-color: transparent;
  border: 1px solid hsl(214.3 32.1% 91.4%);
  color: hsl(222.2 84% 4.9%);
}

.button-outline:hover:not(:disabled) {
  background-color: hsl(210 40% 96.1%);
}

.button-ghost {
  background-color: transparent;
  color: hsl(222.2 84% 4.9%);
}

.button-ghost:hover:not(:disabled) {
  background-color: hsl(210 40% 96.1%);
}

/* Card styles */
.card {
  background-color: white;
  border: 1px solid hsl(214.3 32.1% 91.4%);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.5rem;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
}

.card-footer {
  padding: 0 1.5rem 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.card-description {
  font-size: 0.875rem;
  color: hsl(215.4 16.3% 46.9%);
  text-align: center;
  margin-top: 0.5rem;
}

/* Input styles */
.input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid hsl(214.3 32.1% 91.4%);
  border-radius: 0.375rem;
  background-color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.input:focus {
  outline: none;
  border-color: hsl(221.2 83.2% 53.3%);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input:disabled {
  background-color: hsl(210 40% 96.1%);
  cursor: not-allowed;
  opacity: 0.5;
}

.input::placeholder {
  color: hsl(215.4 16.3% 46.9%);
}

/* Label styles */
.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(222.2 84% 4.9%);
}

/* Table styles */
.table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table th,
.table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid hsl(214.3 32.1% 91.4%);
  white-space: nowrap;
}

.table th {
  background-color: hsl(210 40% 96.1%);
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(222.2 84% 4.9%);
}

.table tr:hover {
  background-color: hsl(210 40% 98%);
}

/* Error message */
.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: hsl(0 84.2% 60.2% / 0.1);
  color: hsl(0 84.2% 60.2%);
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

/* Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Utilities */
.hidden {
  display: none;
}

@media (min-width: 640px) {
  .hidden.sm-block {
    display: block;
  }
}

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-full { width: 100%; }

/* Responsive container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Date Picker styles */
.date-picker-input {
  padding: 0.5rem;
  border: 1px solid hsl(214.3 32.1% 91.4%);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
}

.date-picker-input:focus {
  outline: none;
  border-color: hsl(221.2 83.2% 53.3%);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.react-datepicker-wrapper {
  width: auto;
  z-index: 10000 !important;
}

.date-picker-wrapper {
  z-index: 10001 !important;
  position: relative;
}

.react-datepicker {
  z-index: 100000 !important;
  position: fixed !important;
}

.react-datepicker__portal {
  z-index: 100001 !important;
}

.react-datepicker__input-container input {
  padding: 0.5rem;
  border: 1px solid hsl(214.3 32.1% 91.4%);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
}

.react-datepicker__input-container input:focus {
  outline: none;
  border-color: hsl(221.2 83.2% 53.3%);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.react-datepicker {
  font-family: inherit;
}

.react-datepicker__header {
  background-color: white;
  border-bottom: 1px solid hsl(214.3 32.1% 91.4%);
}

.react-datepicker__day--selected,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range {
  background-color: hsl(221.2 83.2% 53.3%);
}

.react-datepicker__day--selected:hover,
.react-datepicker__day--in-selecting-range:hover,
.react-datepicker__day--in-range:hover {
  background-color: hsl(221.2 83.2% 45%);
}

/* Preserve scroll position */
#table-scroll-container {
  scroll-behavior: auto !important;
}

#table-scroll-container * {
  scroll-margin: 0 !important;
}

