/*
Loader animation CSS from Uiverse.io by SchawnnahJ
Copyright - 2025 SchawnnahJ

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.season-btn {
  background-color: #cce6ff;
  border: none;
  color: #003366;
  padding: 15px 32px;      /* Wider padding for consistent width */
  min-width: 170px;        /* Ensures all buttons are at least this wide */
  max-width: 220px;        /* Optional: prevents buttons from being too wide */
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  font-weight: normal;
  box-sizing: border-box;
  display: inline-block;
}

.season-btn:hover {
  background-color: #99ccff;
}

/* Opcionalno: hover efekti */
#confirm-custom-country:hover,
#all-countries-btn:hover {
  background-color: #66b2ff;
}

.season-btn:hover {
  background-color: #99ccff;
}

/* CSS kod za izgled dugmeta izabrane zemlje */
.country-btn {
  background-color: #cce6ff;
  border: none;
  color: #003366;
  padding: 15px 32px;
  min-width: 170px;
  max-width: 220px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  font-weight: normal;
  box-sizing: border-box;
  display: inline-block;
}

.country-btn:hover {
  background-color: #99ccff;
}

#country-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px; /* Same as other button gaps */
}

#radio-options label {
    margin-right: 15px;
    font-size: 1rem;
    color: #333;
}

#radio-options input[type="radio"] {
    margin-right: 5px;
}

#country-dropdown-panel {
  display: flex;
  justify-content: center;
  margin-top: 6px; /* Reduce this value for less space */
}

/* Modern CSS Arrow Styles for AI Buttons */
.further-btn-arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.further-btn-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 8px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: all 0.3s ease;
}

.further-btn:hover .further-btn-arrow::after {
  border-left-width: 10px;
  border-top-width: 7px;
  border-bottom-width: 7px;
  transform: translate(-40%, -50%);
}

/* LU full-page loader animation (From Uiverse.io by SchawnnahJ) */
.lu-loader {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
}
.lu-loader:before, .lu-loader:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}
.lu-loader:before {
  animation: before8 2s infinite;
}
.lu-loader:after {
  animation: after6 2s infinite;
}
@keyframes before8 {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}
@keyframes after6 {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}

