


html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


.iti {
  width: 100%;
}


.timeline-dot::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #D1B000;
  border-radius: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(209, 176, 0, 0.3);
}


a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid #D1B000;
  outline-offset: 2px;
}


::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1E293B;
}

::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4B5563;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}


input, textarea, select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: #D1B000 !important;
  box-shadow: 0 0 0 2px rgba(209, 176, 0, 0.2);
}


input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #374151;
  border-radius: 4px;
  background-color: #111827;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="checkbox"]:checked {
  background-color: #D1B000;
  border-color: #D1B000;
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #111827;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


#mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#mobile-menu.active {
  max-height: 500px;
  opacity: 1;
}


#submission-modal, #cookie-settings-modal {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#submission-modal.active, #cookie-settings-modal.active {
  opacity: 1;
}


#cookie-consent-banner {
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

#cookie-consent-banner.active {
  transform: translateY(0);
}


@media (max-width: 640px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}


@media print {
  header, footer, #cookie-consent-banner, #cookie-settings-modal, button {
    display: none !important;
  }
  
  body {
    background-color: white !important;
    color: black !important;
  }
  
  main {
    padding: 0 !important;
  }
  
  a {
    color: black !important;
    text-decoration: underline !important;
  }
}