﻿/* General Container */
@import url("https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@100;300;700&display=swap");
.container {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Card Styling */
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-header {
  background-color: #007bff;
  color: white;
}

.card-body {
  padding: 2rem;
}

/* Form Elements */
.form-group {
  margin-bottom: 1rem;
}

.form-control {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: none;
}

/* Label */
.control-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #212529;
  font-weight: 500;
}

/* Submit Button */
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

/* Validation Messages */
.text-danger {
  color: #dc3545;
}

.is-invalid {
  border-color: #dc3545;
}

.is-valid {
  border-color: #28a745;
}

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

ul {
  list-style: none;
}

.card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.statistics-Card {
  /*background-image: url('../images/kb-logga.png');*/
  background-size: 100px;
  background-repeat: no-repeat;
  background-color: #FFF;
  padding: 3rem 3.5rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column; /* Stack statistics rows vertically */
  position: relative;
  max-width: 500px;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 101%;
  height: 110%;
  background-image: linear-gradient(to right bottom, #4081f8, #7dd2f9); /* Blue gradient */
  z-index: -1;
  border-radius: 15px;
  transform: rotate(-5deg);
  box-shadow: 0 0 45px 5px rgba(0, 0, 0, 0.2);
}

.statistics-row {
  display: flex;
  width: 100%;
}

.statistics-row ul {
  display: flex;
  width: 100%;
  justify-content: space-between; /* Distribute items evenly */
}

.card li h3 {
  display: inline-block;
  font-size: 2rem;
  color: #333;
  vertical-align: top;
  margin-right: 5px;
  line-height: 1.2;
}

/*.card li .fa {
            font-size: .75rem;
        }*/
.card li span {
  color: #9ea6a8;
  font-weight: bold;
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .card::before {
    top: -10px;
    left: -2px;
  }
  .card li {
    width: 100%;
  }
  .card li:not(:first-of-type) {
    margin-top: 15px;
  }
  .card {
    margin: 3rem;
    padding: 1rem;
  }
}
.container {
  /*font-size: 1.5rem;*/
  padding-top: 0;
}

.cookie-consent-container {
  z-index: 1000;
  position: fixed;
  width: 400px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  font-family: "Century Gothic", sans-serif;
  box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
  text-align: center;
  border-radius: 30px 30px 0 0;
}

.cookie-consent-container button {
  display: block;
  margin: auto;
  border: none;
  background-color: green;
  padding: 10px 50px;
  margin-top: -5px;
  color: white;
  transition: all ease 0.5s;
}

.cookie-consent-container button:hover {
  background-color: darkgreen;
}

.cookie-consent-container h3 {
  font-size: 22px;
}

.cookie-consent-container p {
  font-size: 13px;
}

.cookie-consent-container a {
  color: gray;
  text-decoration: underline;
}

.result-text {
  font-size: 1.5rem; /* Adjust the font size */
  font-weight: bold; /* Highlight the text */
  margin-top: 1rem; /* Add space above the result */
  color: #1ab394; /* Example color for positive emphasis */
}

.spectator {
  font-size: 1.2rem;
  padding-bottom: 1rem;
}

.swish-container {
  max-width: 600px; /* Limit the maximum width */
  margin: 0 auto; /* Center the container */
  text-align: center; /* Center-align the content */
  padding: 1rem; /* Add some padding for spacing */
  box-sizing: border-box; /* Ensure padding is included in width calculations */
}

.swish-container .swish-text {
  font-size: 1rem; /* Adjust text size for readability */
  line-height: 1.6; /* Improve text readability */
  color: navy; /* Adjust text color */
  margin-bottom: 1rem; /* Add space below the text */
}

.swish-container .swish-text strong {
  font-size: 1.4rem; /* Adjust text size for readability */
}

.swish-container img {
  max-width: 18rem; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
  margin: auto;
  display: block; /* Center the image */
  margin-top: 1rem;
}

@keyframes gameStartEffect {
  0% {
    transform: scale(1);
    color: #d9534f;
  }
  50% {
    transform: scale(1.1);
    color: #ff6f61;
  }
  100% {
    transform: scale(1);
    color: #d9534f;
  }
}
#countdown {
  text-align: center;
  margin-top: 20px;
}

.countdown-timer {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0;
  color: #1ab394;
}

.puck-btn {
  text-decoration: none;
}

.puck-btn:hover {
  color: #000080;
  text-decoration: none;
}

.position-relative {
  position: relative;
}

.puck-rain-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.puck {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../images/puck-2.png") no-repeat center center/contain;
  animation: fall linear infinite;
}

@keyframes fall {
  from {
    transform: translateY(-100px);
    opacity: 1;
  }
  to {
    transform: translateY(100vh);
    opacity: 0.5;
  }
}
.inputForm-container ul {
  text-align: center;
}

.inputForm-container {
  max-width: 40vw;
  margin: auto;
}

.navbar-collapse li,
.navbar-nav li {
  font-size: 1.3rem;
  font-weight: bold;
}

.kbLoggo-navbar {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}

.imageIn-modal {
  width: auto;
  height: 11rem;
  padding: 9px;
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth effect */
  background-color: #ffffff; /* Optional: Light background for better contrast */
}

.imageIn-modal:hover {
  transform: scale(1.05); /* Slight zoom effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.background-image {
  margin-top: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.05;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-image img {
  max-width: 100%;
  height: auto;
}

/* Default link style */
.navbar-nav a {
  color: var(--kb-navyBlue);
  transition: color 0.3s ease; /* Smooth transition */
}

/* Hover effect */
.navbar-nav a:hover {
  color: red;
}

/* Active/Selected link style */
.navbar-nav .IsActive-nav-link {
  color: #124477 !important;
  font-weight: bold; /* Optional: bold for active link */
  border-bottom: 2px solid #124477; /* Optional: bottom border to indicate selection */
}

/* Hover effect on active link (if you want a separate style when hovering over an active link) */
.navbar-nav .IsActive-nav-link:hover {
  color: #092c5d; /* Slightly darker shade on hover */
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
  opacity: 70%;
}

.centered-name {
  text-align: center;
}

.signUp-btn, .logIn-btn, .logout-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #252426;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  text-transform: uppercase;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.05rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.signUp-btn:hover, .logIn-btn:hover, .logout-btn:hover,
.signUp-btn:focus, .logIn-btn:focus, .logout-btn:focus {
  background-color: #0056b3;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.signUp-btn:active, .logIn-btn:active, .logout-btn:active {
  background-color: #003a75;
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.logout-btn {
  background-color: #000000;
}

.nav-item {
  margin-right: 10px;
}

.saveBtn-Default {
  width: 100%;
}

.teamInfo-btn,
.readAboutGame-btn {
  max-width: 100%;
  min-width: 26rem;
}

.saveBtn-Default,
.readAboutGame-btn,
.teamInfo-btn {
  height: 3rem;
  background-color: var(--defaultButton-color);
  border: none;
  color: var(--default-textColor);
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  text-transform: uppercase;
  transform: scale(1); /* No layout recalculations */
  transition: transform 0.3s ease; /* Smooth scaling */
}

.saveBtn-Default:hover,
.readAboutGame-btn:hover,
.teamInfo-btn:hover {
  background-color: var(--saveBtn-hoverColor);
  color: white;
  transform: scale(1.05); /* Scales the container slightly */
}

.list-with-background {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #7a9ec6;
  border-radius: 15px;
  padding: 50px;
  color: snow;
  font-weight: bold;
  font-size: 1.1rem;
}

.modal-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.centered-image img {
  margin: 0 10px;
  margin-bottom: 2rem;
}

.ja-label {
  background-color: #90ee90;
  padding: 2px 15px;
  border-radius: 4px;
}

.nej-label {
  background-color: #ff6347;
  padding: 2px 4px;
  border-radius: 4px;
}

.edit-save-btn {
  border-radius: 5px;
  height: 50px;
  width: 100%;
  border: 1px solid #cccccc;
  background-color: #4CAF50;
  color: white;
  transition: background-color 0.3s;
}

.edit-save-btn:hover {
  background-color: #45a049;
}

.edit-form-container form {
  width: 100%;
  margin: auto;
  padding: 10px;
}

.edit-modal .modal-dialog {
  width: 100%;
  padding: 0px;
}

.action-btn-container {
  display: flex;
  gap: 10px;
  margin: 0;
}

.tooltip-message {
  width: 100%;
  background-color: #2c2a2a;
  color: #fff;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
  z-index: 1999;
  white-space: nowrap;
}

.error-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: red;
  font-weight: bolder;
  letter-spacing: 1px;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s ease infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 4096px) {
  .container {
    max-width: 72vw;
    font-size: 2rem;
  }
}
@media (max-width: 3440px) {
  .container {
    max-width: 65vw;
    font-size: 1.2rem;
  }
}
@media (max-width: 1920px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 1024px) {
  .inputForm-container {
    max-width: 100vw !important;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  .teamInfo-btn,
  .readAboutGame-btn {
    min-width: 20rem;
  }
  .button-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .button-group .nav-item {
    width: 100%;
  }
  .signUp-btn, .logIn-btn, .logout-btn {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  .footer-background .container {
    font-size: 14px;
  }
  .footer-background {
    height: 9rem;
  }
  .content-bottom-padding {
    padding-bottom: 70px;
  }
  .sponsor-container {
    height: 100%;
    padding: 10px;
    margin: 0 auto;
  }
  .form-container {
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .content-bottom-padding {
    padding-bottom: 120px;
  }
}
.hidden {
  display: none;
}

/*Tab modal*/
.launch {
  height: 50px;
}

.close {
  font-size: 21px;
  cursor: pointer;
}

.nav-tabs {
  border: none !important;
}

.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #ffffff #ffffff #fff;
  border-top: 3px solid blue !important;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  border-top: 3px solid #eee;
  font-size: 20px;
}

.nav-tabs .nav-link:hover {
  border-color: #e9ecef #ffffff #ffffff;
}

.nav-tabs {
  display: table !important;
  width: 100%;
}

.nav-item {
  display: table-cell;
}

.inputbox {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.inputbox span {
  position: absolute;
  top: 7px;
  left: 11px;
  transition: 0.5s;
}

.inputbox i {
  position: absolute;
  top: 13px;
  right: 8px;
  transition: 0.5s;
  color: #3F51B5;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inputbox input:focus ~ span {
  transform: translateX(0px) translateY(-15px);
  font-size: 12px;
}

.inputbox input:valid ~ span {
  transform: translateX(0px) translateY(-15px);
  font-size: 12px;
}

.highlighted {
  background-color: yellow; /* or any other color */
}

.sponsor-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
  /*max-height:70vh;*/
  padding: 40px;
}

.form-container {
  width: 400px;
}

.message-container {
  width: 300px;
  margin: 0 auto;
  text-align: center;
}

.asked-companies-container {
  overflow-y: auto;
  overflow: auto;
  width: 100%;
  max-height: 600px;
  /*border:1px solid #898989;*/
}

.sticky-thead {
  position: sticky;
  top: 0;
  height: 50px;
}

.asked-companies-container::-webkit-scrollbar {
  /*display: none;*/
}

.btn-saveSponsor {
  width: 100%;
  background-color: #000 !important;
  color: white !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bolder !important;
  border-radius: 5px;
}

.btn-saveSponsor:hover {
  background-color: #a9a9a9 !important;
  transition: ease-in-out 0.2s;
  color: #000 !important;
}

.tooltip-message {
  height: 100%;
  width: 100%;
  background-color: #2c2a2a;
  color: #fff;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
  left: 105%;
  top: 0;
  z-index: 1999;
  white-space: nowrap;
}

.error-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: red !important;
  font-weight: bolder;
  letter-spacing: 1px;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s ease infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Hide detail rows by default */
.detail-row {
  display: none;
}

/* Style for clickable data rows */
.data-row {
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  /* On larger screens, ensure detail rows are not accidentally shown */
  .detail-row {
    display: none !important;
  }
  /* Adjust cursor for non-clickable rows on larger screens */
  .data-row {
    cursor: default;
  }
}
@media (max-width: 768px) {
  .sponsor-container {
    height: 100%;
    padding: 10px;
    margin: 0 auto;
  }
  .form-container {
    width: 100%;
    margin: 0 auto;
  }
  .hidden {
    display: none;
  }
}
.filterByYear-container {
  max-width: 12rem;
}

.filterByYear-container select {
  text-align: center;
}

.pageSize-container {
  max-width: 4rem;
}

.pageSize-container input {
  text-align: center;
  height: 3rem;
}

.search-btn-private {
  height: 3rem;
  width: 30rem;
  background-color: #54a7cb;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

.search-btn-private:hover {
  background-color: #3f7e9d;
  transition: 0.5s;
}

.downloadExcel-btn {
  height: 3rem;
}

@media (max-width: 768px) {
  .search-btn-private {
    height: 3rem;
    width: 30%;
    background-color: #54a7cb;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
  }
  .search-btn-private:hover {
    background-color: #3f7e9d;
    transition: 0.5s;
  }
}
.createPerson-container {
  width: 100%;
  max-width: 30vw;
  margin: 0 auto;
  padding: 1rem;
}

.createPerson-container form select {
  width: 10rem;
}

.createPerson-container form textarea {
  height: 100%;
  min-height: 80px;
  max-height: 150px;
}

/* For smaller screens */
@media (max-width: 1024px) {
  .createPerson-container {
    max-width: 100vw; /* Increase width on mobile devices */
    padding: 0;
  }
  .createPerson-container form select {
    width: 100%; /* Adjust the select input width */
  }
}
@media (max-width: 768px) {
  .custom-privatePerson-css {
    overflow-x: hidden;
  }
  .privatePerson-container {
    padding: 0px;
  }
  .custom-privatePerson-css {
    overflow-x: hidden;
  }
}
.custom-companies-css {
  padding: 1rem;
}

.search-btn-company {
  height: 3rem;
  width: 30%;
  background-color: #54a7cb;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

.search-btn-company:hover {
  background-color: #3f7e9d;
  transition: 0.5s;
}

.year-label {
  margin: auto;
  font-size: 1rem;
  /*font-weight: bold;*/
  color: #000;
}

.filterByYear-container {
  /*    display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:row;
  margin: 1rem 0;*/
}

.createCompany-container {
  width: 100%;
  max-width: 30vw;
  margin: 0 auto;
  padding: 1rem;
}

.createCompany-container form select {
  width: 10rem;
}

.createCompany-container form textarea {
  height: 100%;
  min-height: 80px;
  max-height: 150px;
}

.amount-container input {
  width: 9rem;
  padding: 6px;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  background-color: #f8f9fa; /* Light background highlight */
}

@media (max-width: 1200px) {
  .custom-companies-css {
    /*overflow-x: hidden;*/
  }
}
@media (max-width: 1024px) {
  .createCompany-container {
    max-width: 100vw;
    padding: 0;
  }
  .createCompany-container form select {
    width: 100%;
  }
}
/*.truncate-column {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;*/
/*vertical-align: top;*/
/*cursor: pointer;*/ /* Indicate the element is interactive */
/*}*/
@media (max-width: 768px) {
  /*    th .truncate-column {
          max-width: 100px;
      }*/
  .custom-companies-css {
    overflow-x: hidden;
    padding: 0rem;
  }
}
@media (max-width: 612px) {
  #downloadCompaniesExcelButton,
  .search-btn-company {
    width: 100%;
  }
}
/* Add padding and spacing */
.modal-content {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.modal-body {
  padding-top: 0;
}

.form-control {
  border-radius: 5px;
  padding: 10px;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.modal-footer {
  border-top: none;
  text-align: center;
  padding-top: 0;
}

.modal-footer p {
  margin: 0;
}

.modal-footer a {
  color: #007bff;
}

.modal-footer a:hover {
  text-decoration: underline;
}

.team-section-title {
  font-weight: bold;
  margin-bottom: 10px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

.teamInfo-modal ul li {
  padding: 5px 0;
  border-bottom: 1px solid #e9ecef;
}

.teamInfo-modal ul li:last-child {
  border-bottom: none;
}

.teamInfo-modal {
  padding: 20px;
}

/*teamInfoModal-container .modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size:4rem;
}

.modal-footer {
    border-top: none;
    justify-content: center;
}*/
.teamInfo-container {
  margin: 20px auto;
  max-width: 100%;
}

/* Shared styles for containers */
.teamLogo-container,
.centered-image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* Space between elements */
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  margin: 20px auto;
  padding: 10px;
}

/* Shared styles for images */
.scaled-image,
.imageIn-modal {
  width: auto;
  height: 10rem; /* Set default height for images */
  padding: 9px;
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
  background-color: #ffffff; /* Optional: Light background */
}

.scaled-image:hover,
.imageIn-modal:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Shared styles for VS text */
.vs-text {
  font-weight: bold;
  font-size: 2rem; /* Large font size for VS */
  white-space: nowrap; /* Prevents line break for text */
}

/* Media queries */
@media (max-width: 768px) {
  .scaled-image,
  .imageIn-modal {
    height: 8rem; /* Scale down for smaller screens */
  }
  .vs-text {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }
  .teamLogo-container,
  .centered-image {
    gap: 1rem; /* Reduce space between elements */
  }
}
@media (max-width: 480px) {
  .scaled-image,
  .imageIn-modal {
    height: 6rem; /* Further reduce image size */
  }
  .vs-text {
    font-size: 1.2rem; /* Further reduce text size */
  }
  .teamLogo-container,
  .centered-image {
    flex-direction: row; /* Stack items vertically on very small screens */
    text-align: center; /* Center-align text and images */
  }
  .centered-image img {
    margin: 0;
  }
}
:root {
  --defaultButton-color: #3873c4;
  --saveBtn-hoverColor: #285a9b;
  --default-textColor: #ffffff;
  --kb-navyBlue: #000080;
}

.form-check-label.switch-paidStatus {
  margin-left: 0.5rem; /* Adjust spacing between the switch and text */
  font-weight: bold; /* Make the text bold for emphasis */
}

.form-check-input:checked + .switch-paidStatus {
  color: green; /* Change label color to green when checked */
}

.form-check-input:not(:checked) + .switch-paidStatus {
  color: red; /* Change label color to red when unchecked */
}

/* Truncate long text with ellipsis */
@media (max-width: 768px) {
  .pagination .page-link {
    font-size: 1rem; /* Smaller font size */
    padding: 0.25rem 0.5rem; /* Reduce padding */
  }
  td .truncate-column {
    max-width: 100px;
  }
}
.truncate-column {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  /*vertical-align: top;*/
  cursor: pointer; /* Indicate the element is interactive */
}

/*.navbarCustom-style
{
    max-width: 35vw;
    margin:auto;
}*/
.navbar-nav .dropdown-menu {
  min-width: 200px;
}

.navbar-nav .dropdown-item i {
  font-size: 1.2rem;
}

.navbarCustom-style {
  width: 100%;
  max-width: 100vw;
  height: 8rem;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 2rem;
  color: #0056b3;
}

.navbar-nav i {
  font-size: 2.5rem;
}

.navbar-Mobile {
  text-align: center;
}

.footer-background {
  height: 5rem;
  font-size: 1rem;
}

@media (max-width: 1920px) {
  .navbarCustom-style {
    /*max-width:57vw;*/
  }
}
@media (max-width: 991px) {
  .navbarCustom-style {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .navbarCustom-style {
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .mobile-hidden {
    visibility: hidden;
  }
}
@media (max-width: 360px) {
  .navbar-brand {
    font-size: 1.8rem;
  }
}
.announced-container {
  max-width: 55vw;
  margin: auto;
}

@media (max-width: 576px) {
  .announced-container {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
  .card {
    border-radius: 0;
    margin-left: -12px;
    margin-right: -12px;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .announced-container {
    max-width: 90vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .card {
    border-radius: 8px;
    margin-left: 0;
    margin-right: 0;
  }
}
