@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Montserrat/Montserrat-Regular-TyFcnC3.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Montserrat/Montserrat-Medium-gFFcHC5.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Montserrat/Montserrat-Bold-GTKJHbX.ttf") format("truetype");
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Quicksand/Quicksand-Regular-UETnYub.ttf") format("truetype");
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Quicksand/Quicksand-Medium-Q7-iVRJ.ttf") format("truetype");
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Quicksand/Quicksand-Bold-67-BNEO.ttf") format("truetype");
}
* {
  font-family: "Quicksand";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background-color: #F7F7FB;
}

h1 {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 35px;
  line-height: 1.5;
}

h2 {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

a {
  color: #1D1D1B;
  text-decoration: none;
  display: block;
}
a:hover {
  color: #FCD73F;
}
a:hover {
  color: #1D1D1B;
}

.logo {
  width: 100px;
}

.sidebar,
header,
#toggle-btn {
  margin-top: 50px;
}

.leave-button {
  width: 25px;
  height: 25px;
}
.leave-button:hover {
  color: #9A9A9A;
}

.circle {
  width: 30px;
  height: 30px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle.button {
  background-color: #FCD73F;
}
.circle.button.secondary {
  background-color: #1D1D1B;
  color: #FFFFFF;
}
.circle.button:hover {
  background-color: #fbcd0d;
}
.circle.button:hover.secondary {
  background-color: #030302;
}

.message-box {
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  animation: fadeIn 0.5s ease-in-out;
}
.message-box.success {
  background-color: white;
  color: #65BF73;
  border: 1px solid #65BF73;
}
.message-box.success::before {
  content: "✅";
  margin-right: 10px;
  font-size: 16px;
}
.message-box.error {
  background-color: white;
  color: #FF4848;
  border: 1px solid #FF4848;
}
.message-box.error::before {
  content: "⚠️";
  margin-right: 10px;
  font-size: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sidebar {
  width: 250px;
  background-color: #F8F1D5;
  padding: 20px;
  color: #1D1D1B;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 20;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}
.sidebar.closed {
  width: 0;
  opacity: 0;
  pointer-events: none;
}
.sidebar.closed .logo-text {
  opacity: 0;
}
.sidebar .logo {
  margin: 30px 0 10px 5px;
}
.sidebar .logo-text {
  color: #FCD73F;
  transition: all 0.3s ease;
}
.sidebar nav ul {
  list-style: none;
}
.sidebar nav ul li {
  margin-bottom: 15px;
}
.sidebar nav ul li a {
  color: #1D1D1B;
  font-size: 16px;
  padding: 8px;
  border-radius: 5px;
}
.sidebar nav ul li a:hover {
  background-color: #F8F8F8;
}

header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
header .user-info {
  display: flex;
  align-items: center;
}
header .user-info span {
  margin-right: 10px;
}
header #logout {
  background-color: #FCD73F;
  border: none;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}
header #logout:hover {
  background-color: #fbcd0d;
}

#toggle-btn {
  background: none;
  border: none;
  color: #1D1D1B;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 50;
}
#toggle-btn.btn-closed {
  color: #1D1D1B;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.toggle-switch .toggle-input {
  display: none;
}
.toggle-switch .toggle-label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.toggle-switch .toggle-label:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.toggle-switch .toggle-input:checked + .toggle-label {
  background-color: #FCD73F;
}
.toggle-switch .toggle-input:checked + .toggle-label:before {
  transform: translateX(20px);
}

.main-content {
  flex-grow: 1;
  padding: 20px;
  transition: all 0.3s ease;
}
.sidebar.closed + .main-content {
  margin-left: 0;
}
.sidebar:not(.closed) + .main-content {
  margin-left: 250px;
}

.container {
  text-align: center;
  width: 100%;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.row__child {
  flex: 1;
  margin-right: 20px;
}
.row__child:last-child {
  margin-right: 0;
}

.cards {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  color: #5452F6;
}
.cards .card {
  background-color: #F0F7FF;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #5452F6;
  text-align: center;
  color: #5452F6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cards .card:hover {
  background-color: #5452F6;
  color: #FFFFFF;
}

.sticky-bar {
  height: 50px;
  position: fixed;
  display: flex;
  gap: 10px;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FCD73F;
  padding: 10px 15px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-text {
  font-family: "Quicksand";
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  float: left;
  margin-top: -5px;
}

.login__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.login__box {
  background-color: #F8F8F8;
  padding: 30px 40px;
  border-radius: 8px;
  width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  justify-content: start;
}
.login__box label {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  float: left;
}
.login__box.w-100 {
  width: 100%;
}
.login__box form {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.login__box form > * {
  width: 100%;
}
.login__box form .file-container {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.login__box form option:checked {
  background-color: #FCD73F;
}
.login__message {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #CDCDCD;
  margin-bottom: 10px;
}
.login__input {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 14px;
}
.login__input.select {
  border-right: 10px solid transparent;
}
.login__input:focus {
  outline: none;
}
.login__input::placeholder {
  color: #CDCDCD;
}
.login__link {
  font-size: 12px;
  color: #1D1D1B;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}
.login__link:hover {
  color: #FCD73F;
}
.login__link--left {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: #1D1D1B;
  text-decoration: none;
  display: block;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.login__link--left:hover {
  color: #FCD73F;
}
.login__button {
  width: 100%;
  padding: 15px;
  background-color: #FCD73F;
  border: none;
  border-radius: 8px;
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  margin-top: 20px;
}
.login__button.secondary {
  background-color: #F0F7FF;
  color: #5452F6;
  border: 1px solid #F0F7FF;
}
.login__button.secondary:hover {
  border: 1px solid #5452F6;
  background-color: #F0F7FF;
}
.login__button:hover {
  background-color: #fbcd0d;
}

fieldset {
  border: 1px solid #FCD73F;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
fieldset:has(input[type=checkbox]:not(:checked)) {
  border: 1px solid #CDCDCD;
}

input[type=checkbox] {
  accent-color: #FCD73F;
}

table {
  text-align: left;
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.tab {
  flex: 1;
  padding: 10px 20px;
  border: 1px solid #CDCDCD;
  background-color: #F7F7FB;
  cursor: pointer;
  margin: 0 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
}
.tab.active {
  background-color: #FCD73F;
  border-color: #fbcd0d;
}
.tab:hover {
  background-color: #9A9A9A;
}

.tab-content {
  width: 100%;
}

.content {
  display: none;
  padding: 20px;
}
.content.active {
  display: block;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal.active {
  display: block;
  animation: slideIn 0.3s ease-in;
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal-overlay.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.modal-title {
  font-size: 1.5em;
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0;
  color: #666;
}
.modal-close:hover {
  color: #000;
}
.modal-body {
  margin-bottom: 20px;
}

.game__box {
  background-color: #F8F8F8;
  border-radius: 8px;
  width: 100%;
  padding: 30px 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.game__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 30px 40px;
}
.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.game-header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.game-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prize-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.prize-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.match-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.match-section {
  display: none;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.match-section.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tooltip-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tooltip-text {
  position: absolute;
  background: #333;
  color: #fff;
  max-width: 400px;
  width: max-content;
  overflow-wrap: break-word;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  z-index: 1000;
}

.tooltip-container:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

.scores-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.score-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  min-width: 300px;
}

.score-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.score-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 10px 0;
}

.team-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.score-input {
  width: 60px;
  height: 40px;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 0.5rem;
}

.score-separator {
  font-size: 1.5rem;
  font-weight: bold;
  color: #495057;
}

.league-info {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.popup-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.switch-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 220px;
  height: 54px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 27px;
  overflow: hidden;
}
.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  border: 2px solid #FCD73F;
  border-radius: 27px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 44px;
  width: 100px;
  left: 5px;
  bottom: 3px;
  background-color: #FCD73F;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.slider span {
  font-weight: 700;
  z-index: 1;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.slider .auto {
  color: #1D1D1B;
}
.slider .manual {
  color: #9A9A9A;
}

input:checked + .slider {
  border-color: #FCD73F;
}
input:checked + .slider:before {
  transform: translateX(110px);
  background-color: #FCD73F;
}
input:checked + .slider .auto {
  color: #9A9A9A;
}
input:checked + .slider .manual {
  color: #1D1D1B;
}

.badge-test {
  background-color: #ff4444;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.remove-button {
  top: -10px;
  right: -10px;
  background-color: #FF4848;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.remove-button:hover {
  background-color: #ff1515;
  transform: scale(1.05);
}

/*# sourceMappingURL=app.output.css.map */
