@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {

    --header-height: 3rem;
	--navbar-height: 104px; /*Fallback padding*/


	--first-color: #1D1D1B;   /*dark main color */
	/*--link-color-underline: #FDFEFE;*/
	--link-color-underline: #eb0e37;
	
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
	
	--menu-color: #dddddd;
	
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;

}


*,
::before,
::after {
    box-sizing: border-box
}

html,
body {
	margin: 0;
	position: relative;
    /*margin: var(--header-height) 0 0 0;*/
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
	height: 100%;
    /*transition: .5s;*/
}


.header {
    width: 100%;
    height: var(--header-height);
}


/* Style
================================================== */

	h1 {text-align: center;}
	h2 {text-align: center;}
	


/* Navbar
================================================== */

	nav.navbar {
	  margin-bottom: 0;
	  padding-bottom: 0;
	}



	.navbar {
		color: var(--white-color);
		background-color: var(--first-color);
		min-height: 5rem;
	}
	

    .nav-link {
		font-size: 0.95rem;
		padding: 0.25rem 0.5rem;
    }
	

	.navbar-text {
		font-size: 1rem;
		display: flex;
		align-items: center;
		height: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
	}



	.navbar  a{
		color: var(--white-color);
	}

	.navbar a:before {
		display: none;
	}
	.navbar a:after {
		display: none;
	}

	.navbar  a:hover, .navbar  a:active, .navbar  a:focus, .btn-link:hover, .btn-link:focus, .btn-link:active{
		color: var(--white-color);
		text-decoration: underline;
		text-underline-offset: 3px;
		text-decoration-thickness: 2px;
		text-decoration-line: underline;
		text-decoration-color: var(--link-color-underline);
		-webkit-text-decoration-color: var(--link-color-underline);	
	}
	
	.navbar  .btn{
		color: var(--white-color);
	}
	
	.navbar .navbar-text{
		color: var(--white-color);		
	}

	.navbar  .btn:focus, .btn:active {
		outline: none !important;
		box-shadow: none !important;
	}

	.navbar .dropdown-menu{ 
		padding: 1rem;
		background-color: var(--menu-color);
		color: #262626;
	}

	.navbar  .dropdown-item{
		color: #262626;
		font-size:13px !important;
	}

	.navbar .dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active{
		color: var(--first-color);
		background-color: transparent;
		text-decoration: underline;
		text-underline-offset: 2px;
		text-decoration-thickness: 2px;
		text-decoration-line: underline;
		text-decoration-color: var(--first-color);
		-webkit-text-decoration-color: var(--first-color);	
	}

	.navbar .megamenu{ 
		padding: 1rem;
		background-color: var(--menu-color);
		color: #262626;
	}
	
	.navbar-nav .nav-link.show{
		color: var(--white-color);		
	}
	
	.nav-link .rotate-icon {
		font-size: 0.75rem;
		opacity: 0.8;
		margin-left: 0.3rem;
		vertical-align: middle;
		transition: transform 0.3s ease;
	}


	/* Rotate when dropdown is open */
	.navbar-nav .nav-link[aria-expanded="true"] .rotate-icon {
		transform: rotate(180deg);
		transition: all 0.3s ease;
	}

	.megamenu  .dropdown-header{
		color: #333333;
		font-weight: bold;
		font-size:15px !important;
	}



/* ============================================
   Navbar Toggler – Optimized & Accessible
============================================ */

:root {
  --toggler-bar-width: 24px;
  --toggler-bar-height: 2px;
  --toggler-bar-gap: 6px;
  --toggler-focus-outline: 2px solid var(--white-color);
  --toggler-focus-offset: 2px;
}

/* Base Toggler Reset */
.navbar-toggler {
  border: none;
  background: transparent;
  box-shadow: none;
}

.navbar-toggler:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 2px;
	text-decoration-line: underline;
	text-decoration-color: var(--first-color);
}



/* Focus Handling */
.navbar-toggler:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.navbar-toggler:focus-visible {
  outline: var(--toggler-focus-outline);
  outline-offset: var(--toggler-focus-offset);
}

/* Icon Styling */
.custom-toggler .navbar-toggler-icon {
  position: relative;
  width: var(--toggler-bar-width);
  height: var(--toggler-bar-height);
  background: transparent;
  transition: all 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
}

/* Top & Bottom Bars */
.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--toggler-bar-width);
  height: var(--toggler-bar-height);
  background-color: var(--white-color);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.custom-toggler .navbar-toggler-icon::before {
  top: calc(-1 * var(--toggler-bar-gap));
}

.custom-toggler .navbar-toggler-icon::after {
  top: var(--toggler-bar-gap);
}

/* Open State Animation */
.custom-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.custom-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Keyboard Focus Outline on Icon */
.navbar-toggler:focus-visible .navbar-toggler-icon {
  outline: var(--toggler-focus-outline);
}


.custom-toggler .navbar-toggler-icon:hover {
  border-bottom: 2px solid var(--first-color);
}





	
/* Navbar Icon text decoration
================================================== */

	.text-decoration-none:hover{
		text-decoration: none;
	}

	.text-decoration:hover, .text-decoration:focus, .text-decoration:active{
		color: var(--white-color);
		text-decoration: underline;
		text-underline-offset: 5px;
		text-decoration-thickness: 2px;
		text-decoration-line: underline;
		text-decoration-color: var(--link-color-underline);
		-webkit-text-decoration-color: var(--link-color-underline);	
	}
	
/* Navbar Mega Menu
================================================== */

	.megamenu .dropdown-header{
		font-size:0.85rem !important;
	}
	.megamenu .dropdown-item{
		font-size:0.80rem !important;
	}

/* Footer
================================================== */

	.footer {
		color: var(--white-color);
		background-color: var(--first-color);
		height: 40px;
		width: 100%;
		/*margin-top: 2rem !important;
		position: fixed;
		bottom: 0;*/
		font-size:13px !important;
		/*position: sticky;
		bottom: 0;*/
	}

	.footer a {
		color: var(--white-color);
		text-decoration: none;
	}	


/* Style
================================================== */



	.btn-filled{
			color: var(--white-color);
			background-color: var(--first-color);	
	}

	.btn-filled:hover, .btn-filled:active, .btn-filled:focus{
			color: var(--white-color);
			text-decoration: underline;
			text-underline-offset: 3px;
			text-decoration-thickness: 2px;
			text-decoration-line: underline;
			text-decoration-color: var(--link-color-underline);
			-webkit-text-decoration-color: var(--link-color-underline);	
	}
	

    .carouselicon {
        background-color: black;
        padding: 25px;
        border-radius: 100px;
    }


/* Gallery
================================================== */	


	.card-img-top {
	  transition: transform 0.2s ease-in-out;
	}
	.card-img-top:hover {
	  transform: scale(1.05);
	}
	.carousel-caption {
	  background-color: rgba(0, 0, 0, 0.5);
	  padding: 0.5rem;
	  border-radius: 0.25rem;
	}





/* Cards
================================================== */

	.card-body {
		display: flex;
		flex-direction: column;
	}

	.btn-card1 {
		border: none;
		outline: 0;
		display: inline-block;
		padding: 8px;
		color: white;
		background-color: #000;
		text-align: center;
		cursor: pointer;
		width: 100%;
		text-decoration: none;
		margin-top: auto;
	}	

	.btn-card1:hover, .btn-card1:active, .btn-card1:focus {
		border: none;
		outline: 0;
		display: inline-block;
		padding: 8px;
		color: white;
		background-color: #000;
		text-align: center;
		cursor: pointer;
		width: 100%;
		text-decoration-line: underline;
		text-underline-offset: 2px;
		text-decoration-thickness: 2px;
		text-decoration-color: var(--link-color-underline);
		-webkit-text-decoration-color: var(--link-color-underline);	
	}
	
	.business-card {
		max-width: 350px;
		border: none;
		border-radius: 12px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
		transition: transform 0.3s ease-in-out;
		background: linear-gradient(135deg, #003366, #0056b3);
		color: white;
	}

	.card {
		min-height: 400px;
	}


	.business-card .card-header {
		height: 150px;
		background-image: url('https://via.placeholder.com/350x150');
		background-size: cover;
		border-top-left-radius: 12px;
		border-top-right-radius: 12px;
	}

	.business-card .card-title {
		font-weight: bold;
		color: #ffffff;
	}

	.business-card .card-text {
		color: #e0e0e0;
	}

	.business-card .btn-primary {
		width: 100%;
		border-radius: 8px;
		background-color: #ffffff;
		color: #0056b3;
		border: none;
	}

	.business-card .btn-primary:hover {
		background-color: #e0e0e0;
	}

	

/* Alert Cards
================================================== */

	.b-button {
		width: 9em;
		font-weight: 500;
		/*font-size: 1.2vw;*/
		font-size: clamp(12px, 1.2vw, 22px);
		text-align: center;
		text-decoration: none;
		display: inline-block;
		transition-duration: 0.4s;
		border-radius: 8px;
	}
	
	.b-button:hover,.b-button:active,.b-button:focus {
		color: var(--white-color);
		background-color: #DCDCDC;
		/*opacity: 0.3;*/
		transition-duration: 0.4s;
	}

	.b-button-sm {
		width: 10em;
		height: 1rem;
		font-weight: 500;
		font-size: 0.7em;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		transition-duration: 0.4s;
		border-radius: 8px;
	}
	
	.b-button-sm:hover,.b-button-sm:active,.b-button-sm:focus {
		color: var(--white-color);
		background-color: #DCDCDC;
		/*opacity: 0.3;*/
		transition-duration: 0.4s;
	}
	
/* Forbidden Page
================================================== */

	.myh1 {
		font-size: 45vw;
		text-align: center;
		position: fixed;
		width: 100vw;
		z-index: 1;
		color: #D7D5D4;
		text-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
		top: 50%;
		transform: translateY(-50%);
	}

	.mydiv {
		background: rgba(0, 0, 0, 0);
		width: 70vw;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		margin: 20rem auto;
		box-shadow: 0 0 150px -20px rgba(0, 0, 0, 0.5);
		z-index: 3;
	}




/* Modal
================================================== */



	/* The Modal (background) */
	.modal {
	  background-color: rgb(0,0,0); /* Fallback color */
	  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	}


	/* Modal Content/Box */
	.modal-content {
	  margin: 15% auto; /* 15% from the top and centered */
	  padding: 20px;
	  border: 1px solid #888;
	  color: grey;
	}
	
	.modal .mybtn-submit {
		color: var(--white-color);
		background-color: var(--first-color);	
	}
	
	.modal .mybtn-close {
		color: var(--first-color);
		border-color: var(--first-color);
		background-color: white;	
	}

	.modal .btn-close {
		  color: var(--first-color);
		  text-decoration: none;
		  opacity: 1;
	}

	.btn-close-custom {
		filter: invert(0.5) sepia(1) 
		saturate(5) hue-rotate(175deg);
	}
	

	.btn-close-light-custom {
	  filter: invert(1) sepia(0.2) saturate(2) hue-rotate(0deg);
	}

	
	.custom-transparent {
		background-color: rgba(255, 255, 255, 0.85); /* Light transparent white */
		backdrop-filter: blur(6px); /* Optional: frosted glass effect */
	}


	/* Make the modal backdrop semi-transparent and blur the content behind it */
	.modal-backdrop {
		background-color: rgba(0, 0, 0, 0.5); /* Adjust transparency as needed */
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);

	}

	/* Apply a custom glass effect to the modal content */
	.custom-glass-effect {
		/* Frosted glass panel */
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255,255,255, 0.3);
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
		border-radius: 15px;
		color: var(--white-color);
	}


/* Business Card
================================================== */

	.about-section {
	  padding: 50px;
	  text-align: center;
	  background-color: #474e5d;
	  color: white;
	}

	.card {
	  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	  margin: 8px;
	}
	
	.card-img-top {
		width: 100%;
		height: 35vh;
		object-fit: cover;
	}

	.businesscard {
	  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	  max-width: 25rem;
	  margin: auto;
	  text-align: center;
	  transition: 0.3s;
	  border-radius: 5px;
	  margin:1rem 1rem;
		color: grey;
	}

	.businesstitle {
	  color: grey;
	  font-size: 18px;
	}

	.businesscardbutton {
	  border: none;
	  outline: 0;
	  display: inline-block;
	  padding: 8px;
	  color: white;
	  background-color: #000;
	  text-align: center;
	  cursor: pointer;
	  width: 100%;
	}

	.businesscard a, .businesscard a:hover, .businesscard a:focus, .businesscard a:active{
		color: gray;
		text-decoration: none;
	}

/* Login Card
================================================== */
	.logincard {
	  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	  max-width: 22rem;
	  margin: auto;
	  text-align: left;
	  transition: 0.3s;
	  border-radius: 5px;
	  margin:1rem 1rem;
		color: grey;
	}


/* Chart.js 
================================================== */


	#chart-container {
		min-height: 350px; /* Set your desired minimum height */
		width: 100%;
		max-width: 100%;
		padding: 1rem;
		box-sizing: border-box;
	}

	canvas {
		width: 100% !important;
		height: auto !important;
	}


/* Badges
================================================== */

	.notification-badge {
		color: white;
		background:grey;
		position: relative;
		top: -17px;
		right: 10px;
		/*border: $white 1px solid;*/
		margin-right: -18px;
		border-radius: 30px 30px 30px 30px;
		font-size:10px!important;
		text-align: center;
		display:inline-block;
	}
	
	.new-badge {
		color: white;
		background:grey;
		position: relative;
		top: -13px;
		right: 5px;
		/*border: $white 1px solid;*/
		margin-top: 5px;
		margin-right: -18px;
		border-radius: 5px;
		text-align: center;
		font-size:8px!important;
		padding-left:5px;
		padding-right:5px;
		display:inline-block;
	}

	
/* Table
================================================== */
	.table {font-size:12px!important;}


.coach-separator td {
    border-top: 3px solid #333;
}




/*
	.table {
		width: auto !important; 
		table-layout: auto; 
	}

*/


	
/* Datatables
================================================== */
	.col-search-input {
		margin-top: 10px;
		display: block;
		width: 100%;
	}

	.dt-button {
		font-size:12px !important;
	}
	
	.dt-info{
	  font-size: 0.85em;
	}
	

	
/* Search Result Highlighting
================================================== */

	.highlight {
		background-color: yellow;
		font-weight: bold;
	}




/* Switch Checkbox
================================================== */

  .switch-label {
    display: inline-block;
    width: 50px;
    height: 25px;
    background-color: lightgray;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
  }

  .switch-label::after {
    content: "Off";
    color: white;
    font-weight: bold;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
  }

  .form-check-input:checked + .switch-label {
    background-color: green;
  }

  .form-check-input:checked + .switch-label::after {
    content: "On";
    left: auto;
    right: 5px;
  }




/* Loader
================================================== */
    div.spinner {
      position: relative;
      width: 54px;
      height: 54px;
      display: inline-block;
    }
    
    div.spinner div {
      width: 12%;
      height: 26%;
      background: #000;
      position: absolute;
      left: 44.5%;
      top: 37%;
      opacity: 0;
      -webkit-animation: fade 1s linear infinite;
      -webkit-border-radius: 50px;
      -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
    }
    
    div.spinner div.bar1 {-webkit-transform:rotate(0deg) translate(0, -142%); -webkit-animation-delay: 0s;}    
    div.spinner div.bar2 {-webkit-transform:rotate(30deg) translate(0, -142%); -webkit-animation-delay: -0.9167s;}
    div.spinner div.bar3 {-webkit-transform:rotate(60deg) translate(0, -142%); -webkit-animation-delay: -0.833s;}
    div.spinner div.bar4 {-webkit-transform:rotate(90deg) translate(0, -142%); -webkit-animation-delay: -0.75s;}
    div.spinner div.bar5 {-webkit-transform:rotate(120deg) translate(0, -142%); -webkit-animation-delay: -0.667s;}
    div.spinner div.bar6 {-webkit-transform:rotate(150deg) translate(0, -142%); -webkit-animation-delay: -0.5833s;}
    div.spinner div.bar7 {-webkit-transform:rotate(180deg) translate(0, -142%); -webkit-animation-delay: -0.5s;}
    div.spinner div.bar8 {-webkit-transform:rotate(210deg) translate(0, -142%); -webkit-animation-delay: -0.41667s;}
    div.spinner div.bar9 {-webkit-transform:rotate(240deg) translate(0, -142%); -webkit-animation-delay: -0.333s;}
    div.spinner div.bar10 {-webkit-transform:rotate(270deg) translate(0, -142%); -webkit-animation-delay: -0.25s;}
    div.spinner div.bar11 {-webkit-transform:rotate(300deg) translate(0, -142%); -webkit-animation-delay: -0.1667s;}
    div.spinner div.bar12 {-webkit-transform:rotate(330deg) translate(0, -142%); -webkit-animation-delay: -0.0833s;}

     @-webkit-keyframes fade {
      from {opacity: 1;}
      to {opacity: 0.25;}
    }

/* Rating
================================================== */

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
}

.rating>input {
    display: none;
}

.rating>label {
    position: relative;
    width: 1em;
    font-size: 30px;
    font-weight: 300;
    color: #FFD600;
    cursor: pointer;
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0;
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important;
}

.rating>input:checked~label:before {
    opacity: 1;
}

.rating:hover>input:checked~label:before {
    opacity: 0.4;
}


/* Podium
================================================== */

.podium {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: nowrap;         /* verhindert Umbruch */
  overflow-x: auto;          /* erlaubt horizontales Scrollen */
  padding: 0 10px;
  width: 100%;
}

.podium-box {
  width: 120px;
  min-width: 120px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
}


.podium-box.first  { background: linear-gradient(to top, #ffd700, #fff176); height: 200px; }
.podium-box.second { background: linear-gradient(to top, #c0c0c0, #e0e0e0); height: 160px; }
.podium-box.third  { background: linear-gradient(to top, #cd7f32, #ffccbc); height: 120px; }

.podium-box.first {
  color: rgba(60, 40, 0, 0.85);   /* Dunkles Goldbraun für Kontrast auf Gold */
}

.podium-box.second {
  color: rgba(50, 50, 50, 0.85);  /* Dunkles Grau für Klarheit auf Silber */
}

.podium-box.third {
  color: rgba(80, 40, 20, 0.85);  /* Warmes Braun für Bronze-Hintergrund */
}



.podium-label {
  font-weight: bold;
  margin-top: auto;
}

.podium-box.empty {
  background-color: #ccc;
  color: #666;
}


.podium {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.podium-box {
  scroll-snap-align: center;
}

.podium-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.3), transparent);
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}
.podium-box {
  position: relative;
}

@keyframes rise {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.podium-box {
  animation: rise 0.6s ease-out;
}

.podium-box div {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}



.podium-box {
  color: #fff;
  background-color: #333; /* oder ein heller Verlauf */
}


/* Timeline
================================================== */

/* === Timeline Container === */
.timeline {
  position: relative;
  margin-left: 2rem;
  padding-left: 2rem;
}

/* === Vertikale Linie durch alle Events === */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3.45rem; /* exakt mittig zur Icon-Position */
  width: 2px;
  height: 100%;
  background-color: #0d6efd;
  z-index: 0;
}

/* === Einzelnes Timeline-Item === */
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  min-height: 3rem; /* stellt sicher, dass Icon Platz hat */
}

/* === Blaue Kreis-Icons === */
.timeline-icon {
  position: absolute;
  left: 1rem; /* Hälfte der Icon-Breite + Linie-Mitte */
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-size: 0.75rem;
}

/* === Inhalt rechts vom Icon === */
.timeline-content {
  margin-left: 3rem;
}

/* === Datum/Uhrzeit mit Schattenrahmen === */
.timeline-date {
  border-left: 4px solid #0d6efd;
  background-color: #fff;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

/* === Beschreibung + Ort in einer Zeile === */
.timeline-content p.text-muted {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0;
}






/* Back to Top button
================================================== */	
	
	#btn-back-to-top {
	  position: fixed;
	  bottom: calc(20px + env(safe-area-inset-bottom)); /* iOS safe area support */
	  right: 20px;
	  display: none;
	  width: 40px;
	  height: 40px;
	  border-radius: 50%;
	  background-color: rgba(0, 123, 255, 0.8);
	  color: white;
	  border: none;
	  font-size: 16px;
	  cursor: pointer;
	  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	  opacity: 0.8; /* 0 = fully transparent, 1 = fully opaque */

	  /* Flexbox centering */
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 0; /* Remove default padding */
	  
	  display: none;
	}

	#btn-back-to-top i {
	  margin: 0; /* Remove any default margin */
	  padding: 0;
	  line-height: 1;
	}


	
/* Helper
================================================== */
	
	.caret-off::before {
		display: none;
	}
	.caret-off::after {
		display: none;
	}



/* Breakpoints
================================================== */	

	@media (max-width: 430px) {
	  .podium-box {
		width: 100px;
		font-size: 0.9em;
	  }
	  .podium-label {
		font-size: 0.8em;
	  }
	  
	  .podium-box .fw-bold { font-size: 1rem; }
	  .podium-box .fs-5     { font-size: 0.95rem; }
	  .podium-box .fs-6     { font-size: 0.85rem; }


	}


	/* === Responsive Anpassung für Mobilgeräte === */
	@media (max-width: 576px) {
	  .timeline {
		margin-left: 1rem;
		padding-left: 1rem;
	  }

	  .timeline::before {
		left: 1.8rem;
	  }

	  .timeline-icon {
		left: 0.5rem;
		width: 0.75rem;
		height: 0.75rem;
	  }

	  .timeline-content {
		margin-left: 2.5rem;
	  }

	  .timeline-date {
		padding: 0.5rem 0.75rem;
	  }
	}




	/* Extra small devices (phones, 600px and down) */
	@media only screen and (max-width: 600px) {
		
		#h1{
			font-size:0.70rem;
		}
		
		.nav-link {
			font-size:0.75rem;
			padding-top: 0.65rem;
		}
		
		.navbar .has-megamenu{position:static!important;}
		.navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }
		
		.navbar .notification-badge{font-size:0.5rem !important;}

		.navbar .dropdown-item {
			font-size:0.70rem !important;
		}
		
		.navbar .form-check-label {
			font-size:0.70rem !important;
		}
		
		.megamenu .dropdown-header{
			font-size:0.75rem !important;
		}
		
		.megamenu .dropdown-item{
			font-size:0.70rem !important;
		}
	
		.footer-text{font-size:0.70rem;}
		
		.chart-container {
			aspect-ratio: 4 / 3; /* More square on small screens */
			padding: 0.25rem;
		}
		
	
	}
	

	

	/* Small devices (portrait tablets and large phones, 600px and up) */
	@media only screen and (min-width: 600px) {
		
		#h1{
			font-size:0.70rem;
		}
		
		.nav-link {
			font-size:0.85rem;
			padding-top: 0.70rem;
		}
		
		.navbar .has-megamenu{position:static!important;}
		.navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }
		

		
		.table {font-size:0.70rem !important;}	
		
		.card-deck .card {
			   min-width: 50.1%; /* 1 Column */
			   margin-bottom: 12px;
		}
		
		.footer-text{font-size:0.80rem;}
		
	}
	
	


	/* Medium devices (landscape tablets, 768px and up) */
	@media only screen and (min-width: 768px) {
		
		#h1{
			font-size:0.75rem;
		}

		.nav-link {font-size:0.85rem;}
				
		.navbar .has-megamenu{position:static!important;}
		.navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }
		
		
		.footer-text{font-size:0.80rem;}		


		.card-deck .card {
			   min-width: 33.4%;  /* 2 Columns */
		}

	}
	

	@media (max-width: 991px) {
	  .navbar .megamenu {
		position: static !important;
		width: 100% !important;
		max-height: 60vh;
		overflow-y: auto;
		font-size: 0.85rem;
		padding: 1rem;
	  }
	}

	
	
	/* Large devices (laptops/desktops, 992px and up) */
	@media only screen and (min-width: 992px) {

		.nav-link {
			font-size:0.90rem;
			padding-top: 0.7rem;
		}
		
		.navbar .has-megamenu{position:static!important;}
		.navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }
		
		.navbar .form-check-label {
			font-size:0.80rem !important;
		}
		
		.table {font-size:0.75rem !important;}
		
		.megamenu .dropdown-header{
			font-size:0.85rem !important;
		}
		.megamenu .dropdown-item{
			font-size:0.80rem !important;
		}

		
		.footer-text{font-size:0.90rem;}
		
	}


	/* Extra large devices (large laptops and desktops, 1200px and up) */
	@media only screen and (min-width: 1200px) {
	

		.nav-link {
			font-size:0.95rem;
			padding-top: 0.7rem;
		}
		
		.navbar .has-megamenu{position:static!important;}
		.navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }
		
		.footer-text{font-size:0.95rem;}
		
		.card-deck .card {
			   min-width: 25.1%;  /* 3 Columns */
		}
		
		#userid {
			height: 200px;
		}

		
	}
		
	
	@media(max-width: 1400px){
		
		.navbar .navbar-collapse{
			overflow-y: auto!important;
			max-height: 80vh;
			margin-top: 10px;
			padding-bottom: 6rem;
			font-size: 0.75rem;
		}
	}
	
