@import url('https://fonts.googleapis.com/css2?family=Nova+Square&display=swap');

:root{
    /*background-color: rgba(29,26,26, 1.0)*/
    background-color: #010117;
}

/* === GLOBAL === */
html, body {
    height: 100%;
    margin: 0;
    background-color: #010117;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  font-family: "Times New Roman", Times, serif;
}

.pair-wrapper {
    display: flex; /* Flexbox aktivieren für das Paar */
    gap: 10px; /* Abstand zwischen Dropdown und Button */
    align-items: center; /* Vertikale Zentrierung */
    margin-bottom: 10px; /* Abstand zwischen den Paaren */
}

@keyframes saveSuccess {
    0% { background-color: #ffffff; }
    50% { background-color: #90EE90; }
    100% { background-color: #ffffff; }
}

.save-success {
    animation: saveSuccess 1s ease;
}

.btn-link {
    display: inline-block;
    padding: 6px 12px;
    background-color: #007bff; /* Blau wie ein Button */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}
.btn-link:hover {
    background-color: #0056b3; /* Hover-Farbe */
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-container {
    display: block;
    justify-content: space-around;
}

.dropdown-toggle {
    background-color: dodgerblue;
    font-size: 2.0rem;
    color: black;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 200px;
    font-weight: bold;

}

.dropdown-menu {
    display: none; /* Standardmäßig ausgeblendet */
    font-size: 2.0rem;
    position: absolute;
    background-color: dodgerblue;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 200px;
}

.dropdown:hover .dropdown-menu {
    display: block; /* Zeigt das Menü beim Hover an */
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 2.0rem;
    font-weight: normal;
}

.dropdown-menu a:hover {
    background-color: #ddd; /* Hintergrundfarbe beim Hover */
}

/* ENDE */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

span{
    font-size: 2.2rem;
    text-align: center;
}

.small-text{
    font-size: 1.6rem;
}

.search-bar{
    width: 20rem;
}

.input-editor{
    width: 20rem;
}

table{
    width: 100%;
    display: table;
    border-spacing: 0px;
    margin-left: auto;
    margin-right: auto;
}

.table-80{
    width: 80%;
    display: table;
    border-spacing: 0px;
    margin-left: auto;
    margin-right: auto;
}

.mid-column {
    width: 300px;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.big-column {
    width: 500px;
    max-width: 500px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
}
.big-column .text-link {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.date-column {
    width: 135px;
    max-width: 135px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.small-column {
    width: 90px;
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.very-small-column{
    width: 70px;
    max-width: 70px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-list{
    width: 60rem;
    height: 100%;
    font-weight: normal;
    background: transparent;
    margin: auto;
    text-align: left;
}

table.table-stats{
    width: 60rem;
    height: 100%;
    font-weight: normal;
    background: transparent;
    margin: auto;
    text-align: left;
}

table.table-stats thead th{
    font-size: 2.5rem;
    width: 1px;
    height: 100%;
    font-weight: normal;
    background: MidnightBlue;
    color: white;
    padding-left: 1rem;
    padding-right: 1rem;
}

table.table-stats td{
    font-size: 2.0rem;
    font-weight: normal;
    color: black;
    white-space:nowrap;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

table.table-stats tr{
    /*font-size: 2.5rem;*/
    /*font-weight: normal;*/
    /*color: black;*/
    /*white-space:nowrap;*/
    /*padding-left: 1rem;*/
    /*padding-right: 1rem;*/
    text-overflow: ellipsis;
}

table.table-stats input{
    font-size: 2.5rem;
    color: black;
    width: 60px;
    /*padding-left: 1rem;*/
    /*padding-right: 1rem;*/
}

table.table-stats tr:nth-child(even){
    background: #e3e1e1;
    color: black;
}

table.table-stats tr:nth-child(odd){
    background: #ffffff;
    color: black;
}

.editor-text-tabelle-small{
    font-size: 1rem;
    width: 80%;
    height: 100%;
    font-weight: normal;
    background: #3d3d3d;
    color: white;
    margin: auto;
}

.editor-text-tabelle-large{
    font-size: 3rem;
    width: 100%;
    height: 100%;
    font-weight: normal;
    background: MidnightBlue;
    color: black;
    margin: auto;
}

.editor-text-tabelle:hover{
    cursor: pointer;
    transition: transform 150ms;
    transform: scale(1.03);
    background: blue;
}

.editor-text-tabelle[disabled]:hover{
    cursor: not-allowed;
    transform: none;
    background: MidnightBlue;
}

.editor-checkbox{
    width: 30px;
    height: 30px;
}

.small-dropdown{
    width: 50px;
}

.container{
    width: 70%;
    display:block;
    justify-content: center;
    /*max-width: 80rem;*/
    margin: 10px auto;
    padding: 2rem;
    background-color: #3D3F45;
    border-radius: 15px;
}

.row-left{
    width: 150px;
}

.row-center{
    width: 80%;
}

.row-left-special{
    width: 40%;
}

.row-center-special{
    width: 50%;
}

.row-right-special{
    width: 10%;
}

.size{
    width: 600px;
}

/*######################### TEXTE ###########################*/
p{
    /*display: inline-block;*/
    /*padding-top: 1rem;*/
    font-size: 2.4rem;
    color: #FFF;
    /*text-align: left;*/
}

.inactiveLink {
    pointer-events: none;
    cursor: default;
    color: gray;
    text-decoration: none;
    font-size: 3.0rem;
}

.logo-link {
    display: inline-block;
}

.mark-text {
    text-decoration: none;
    font-size: 3.0rem;
    color: royalblue;
}

.mark-text2 {
    text-decoration: none;
    font-weight: normal;
    font-size: 2.5rem;
    font-size: 2.5rem;
    /*color: #A62C21;*/
    color: white;
}

.mark-text2:hover {
    color: yellow;
}

.text-link {
    text-decoration: none;
    font-size: 2.0rem;
    color: black;
}
.text-link:hover {
    color: blue;
}

.link-text {
    font-size: 2.5rem;
    text-align: center;
    color: black;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-decoration: none;
}

.link-text:hover {
    color: blue;
}

.link-text[disabled]:hover{
    transform: none;
}

.headline-text{
    font-size: 2.5rem;
    font-weight: bold;
    /*text-decoration: underline;*/
    color: royalblue;
}

.some-text{
    font-size: 2.5rem;
    color: white;
}

.standard-text{
    font-size: 2.0rem;
    color: white;
}

.paging{
    font-size: 2rem;
    font-weight: normal;
    text-align: left;
    margin-bottom: 1rem;
    color: royalblue;
    text-decoration: none;
}

.paging a,
.paging a:visited,
.paging a:focus,
.paging a:active {
    color: royalblue;        /* gleiche Textfarbe in allen Zuständen */
    font-size: 2rem;         /* gleiche Schriftgröße in allen Zuständen */
    text-decoration: none;   /* keine Unterstreichung */
}

/* Verhindere Größenänderung beim Anklicken durch Entfernen von Transformationen */
.paging a:active,
.paging a:focus {
    transform: none;
    outline: none;
}

/* Optional: Hover-Effekt erhalten */
.paging a:hover {
    color: dodgerblue;  /* z.B. Farbwechsel beim Hover */
}

.paging-text{
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
}

.paging-text-tabelle{
    font-size: 3rem;
    width: 100%;
    height: 100%;
    font-weight: normal;
    background: MidnightBlue;
    color: white;
    margin: auto;
}

h1{
    margin-top:7rem;
    font-size: 5rem;
    color: #FFF;
    text-align: center;
}

h2{
    font-size: 4.2rem;
    margin-bottom: 4rem;
}

/*######################### TEXTE ENDE ###########################*/

/*######################### EDITOR START ###########################*/
.editor-text{
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
    color: white;
}

.editor-text-tabelle{
    font-size: 2.5rem;
    width: 100%;
    height: 100%;
    font-weight: normal;
    background: midnightblue;
    color: white;
    margin: auto;
}

.keepSpace{
    margin-bottom: 1.5rem;
}

.keepWidthSpace{
    margin-right: 1.5rem;
}



/*######################### EDITOR ENDE ###########################*/

/*######################### IDOL BEISPIEL ###########################*/
.cf:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.page-header{
    margin-bottom: 20px;
}
/*.clear {*/
/*    position: absolute;*/
/*    right: 0px;*/
/*    font-size: 2.5rem;*/
/*    bottom: 5px;*/
/*}*/

.page-header .idol-search{
    float: left;
    position: relative;
}

.page-header .idol-search input{
    border-radius: 5px;
    border: 1px solid #eaeaea;
    padding: 8px 15px;
    font-size: 2rem;
    z-index: -1;
}

.idol-item{
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #eaeaea;
}

.idol-details-left{
    width: 50%;
    float: left;
}

.idol-details-right{
    width: 50%;
    float: right;
    text-align: right;
}

.idol-details .avatar{
    width: 40px;
    height: auto;
    border-radius: 20px;
    float: left;
    margin-right: 14px
}

.joined-details{
    width: 50%;
    float: left;
    text-align: right;
}

.joined-details .date{
    margin-top: 15px;
    display: block;
    font-size: 14px;
    color: #999;
}

.idol-item:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

ol, ul {
    list-style: none;
    font-size: 3rem;
}

.pagination{
    margin: 40px 0 0 0;
    text-align: center;
}

.pagination li{
    display: inline;
}

.pagination li a{
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 3px 8px;
    text-decoration: none;
    color: #4ba6c3;
    font-size: 2rem;
}

.pagination li a.active,
.pagination li a:hover{
    background-color: #4ba6c3;
    color: #fff;
}

.pagination_top{
    margin: 40px 0 0 0;
    text-align: center;
}

.pagination_top li{
    display: inline;
}

.pagination_top li a{
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 3px 8px;
    text-decoration: none;
    color: #4ba6c3;
    font-size: 2rem;
}

.pagination_top li a.active,
.pagination_top li a:hover{
    background-color: #4ba6c3;
    color: #fff;
}
/*######################### IDOL BEISPIEL ENDE ###########################*/

.form{
    /*width: 100%;*/
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.oneRow{
    display: flex;
}

.clearfix::after{
    content: "";
    display: block;
    clear:both;
}

.radio{
    width: 10rem;
    display: inline-block;
    vertical-align: top;
}

.mini-logo{
    height: 30px;
    width: auto;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.super-mini-logo{
    background-color: transparent;
    height: 20px;
    width: auto;
    margin-top: 0.5rem;
    /*margin-bottom: 1rem;*/
    margin-left: 0.5rem;
}

button {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}

.standard-button {
    font-size: 1.8rem;
    color: white;
    background-color: gray;
    padding: 0 4px 0 4px;
}

.click-button:active {
    transform: scale(1.2);
}

.click-button {

}

.column-total{
    font-size: 2.5rem;
    font-weight: bold;
    color: MidnightBlue;
}

.win{
    color: green;
}

.lose{
    color: red;
}

.draw{
    color: darkorange;
}

.none{
    color: black;
}

.black{
    color: black;
}

.white{
    color: white;
}

.orange{
    color: #ce7700;
}

.green{
    color: green;
}

.pink{
    color: deeppink;
}

.blue{
    color: dodgerblue;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.center{
    justify-content: center;
    align-items: center;
    text-align: center;
}

.left{
    justify-content: left;
    text-align: left;
}

.right{
    justify-content: right;
    text-align: right;
}

.flex-box{
    display: flex;
}

.justify-center{
    justify-content: center;
}

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

.hidden{
    display: none;
}

.btn{
    font-size: 2.4rem;
    padding: 0 1rem 0 1rem;
    width: 20rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: rgb(28, 26, 26);
    background: linear-gradient(90deg, rgb(18, 92, 255) 0%, rgb(0, 10, 255) 100%);
    border-radius: 4px;
    display: inline;
}

.btn:hover{
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(8, 114, 244, 0.6);
    transition: transform 150ms;
    transform: scale(1.03);
}

.btn[disabled]:hover{
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-marker{
    font-size: 2.4rem;
    padding: 0 1rem 0 1rem;
    width: 20rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: rgb(28, 26, 26);
    background: linear-gradient(90deg, rgb(255, 0, 0, 1) 0%, rgb(135, 0, 0, 1) 100%);
    border-radius: 4px;
    display: inline;
}

.btn-marker:hover{
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(255, 0, 0, 0.5);
    transition: transform 150ms;
    transform: scale(1.03);
}

.btn-marker[disabled]:hover{
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-search {
    padding: 0.5rem;
    text-align: center;
    text-decoration: none;
    background: transparent;
    border: none;
    justify-content: center;
    align-items: center;
}

.btn-search:hover{
    cursor: pointer;
    transition: transform 150ms;
    transform: scale(1.03);
    background: #999999;
}

.btn-search[disabled]:hover{
    cursor: not-allowed;
    transform: none;
    background: graytext;
}

li::marker {
    color: black;
    font-size: 0em;
}

/* === FORM === */

input, option {
    width: 100%;
    font-size: 2.4rem;
    /*margin-top: 0.6rem;*/
    /*margin-bottom: 0.2rem;*/
    padding-left: 1rem;
    padding-right: 1rem;
    color: black;
}

select {
    font-size: 2.4rem;
    /*margin-top: 0.6rem;*/
    /*margin-bottom: 0.2rem;*/
}

.input-small {
    width: 80%;
    font-size: 2.4rem;
    margin-top: 0.6rem;
    margin-bottom: 0.2rem;
}

.alert{
    font-size: 2.4rem;
    color: crimson;
}

.login-form{
    width: 100%; /* Volle Breite für Eingabefelder */
    box-sizing: border-box; /* Berücksichtigt Padding in der Breite */
    display: flex;
    flex-direction: column; /* Elemente untereinander anordnen */
    align-items: center; /* Zentriert die Elemente horizontal */
}

.login-input{
    width: 400px;
}

.btn-login{
    font-size: 2.4rem;
    padding: 0.5rem;
    width: 200px;
    text-align: center;
    margin-top: 1rem;
    text-decoration: none;
    color: rgb(28, 26, 26);
    background: graytext;
    border-radius: 4px;
}

.btn-login:hover{
    cursor: pointer;
    transition: transform 150ms;
    transform: scale(1.03);
    background: #999999;
}

.btn-login[disabled]:hover{
    cursor: not-allowed;
    transform: none;
    background: graytext;
}

.size-icon{
    width: 30px;
    height: 30px;
}

.btn-option {
    /*display: flex; */
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
    padding: 0; /* Standard-Padding entfernen */
    margin: 0; /* Standard-Margin entfernen */
    background: transparent;
    border: none;
    box-sizing: border-box; /* Box-Modell auf border-box setzen */
}

.btn-option:hover{
    cursor: pointer;
    transition: transform 150ms;
    transform: scale(1.03);
    background: #999999;
}

.btn-option[disabled]:hover{
    cursor: not-allowed;
    transform: none;
    background: graytext;
}

/* === END Page === */
.container-end{
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem;
}

.container-editor{
    width: 100%;
    display:grid;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
}

#end-text{
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
}

/* === NAVIGATIONSLEISTE === */
.nav-text{
    font-size: 4rem;
}

nav li + li:before{
    content: "  ";
    padding: 0 10px;
}
nav li + li:after{
    content: "  ";
    padding: 0 10px;
}

.nav-text:hover{
    cursor: pointer;
    transition: transform 150ms;
    transform: scale(1.03);
    background: #999999;
}

.nav-text[disabled]:hover{
    cursor: not-allowed;
    transform: none;
    background: graytext;
}

.active{
  background-color: #A62C21 !important;
}

#header-nav{
  width: 100%;
  height: 50px;
  background-color: #3D3F45;
  position: relative;
}

#header-nav a > img {
  height: 30px;
  width: auto;
  margin: .55rem;
  float: left;
}

#header-nav ul{
  margin:0;
  padding: 0;
  float: right;
  height: 100%;
}

#header-nav ul > li{
    display: inline-block;
    height: 100%;
    padding: 0 .4rem 0 .4rem;
}

#header-nav ul > li > a{
  display: inline-block;
}

#header-nav ul > li > a:link {
  color: #FFF;
  text-decoration: none;
}

#header-nav ul > li > a:visited {
  color: #FFF;
  text-decoration: none;
}

#header-nav ul > li > a:active {
  color: #F0F0F0;
  text-decoration: none;
}

#header-nav ul > li > a:hover {
  color: #F0F0F0;
  text-decoration: none;
}

#header-nav .col-6{
  padding-top: 0;
  padding-bottom: 0;
}

/* === NAVIGATIONSLEISTE (MOBIL) === */
#mobile-nav-button{
    color: #FFF;
    float: right;
    font-size: 4rem;
    border: 2px solid #FFF;
    width: 37px;
    height: 37px;
    position: relative;
    margin-top: .4rem;
    margin-bottom: .5rem;
    vertical-align: center;
}

#mobile-nav-button > span{
  position: absolute;
  bottom: 1px;
  left: 9px;
}

#mobile-nav-content > ul > li{
    display: block;
    background-color: #3D3F45;
    height: 40px;
    padding: 0 1.2rem;
    text-align: center;
    font-size: 2.5rem;
    z-index:1;
}

#mobile-nav-dropdown{
  position: relative;
  display: inline-block;
  float: right;
}

#mobile-nav-content{
  position: absolute;
  right: 0;
  top: 50px;
  display: none;
}

#mobile-nav-dropdown:hover > #mobile-nav-content{
  display: block;
}

#mobile-nav{
  display: none;
}

@media (max-width: 768px) {
  #desktop-nav{
    display: none;
  }
  #mobile-nav{
    display: block;
  }
}

/* === HEADER-BANNER === */
#header-banner{
  /*width: 100%;*/
  /*height: 0;*/
  /*padding-top: 20.83%; !* Wie viel % von 1920px sind 400px? 400 / 1920 * 100 = 20.83% *!*/
  padding-top: 13%; /* Wie viel % von 1920px sind 400px? 400 / 1920 * 100 = 20.83% */
  background: url("../img/bg-large.jpg") no-repeat;
  /*background-size: contain;*/
  background-size: 100%;
background-position: top;
}

#header-banner-klein{
  width: 100%;
  height: 0;
  padding-top: 15.625%;
  background: url("../img/bg-large.jpg") no-repeat;
  background-size: contain;
}

.band-img {
    max-height: 199px;
    width: auto;
    min-width: 265px;
    margin: 1rem;
    /*float: left;*/
}

.return-arrow {
    height: 40px;
    width: 80px;
    background: url("../img/arrow.png") no-repeat;
    float: left;

    /*display: inline-block;*/
}
.return-arrow:hover{
    background: url("../img/arrow-hover.png") no-repeat;
}

[class*='col-']{
  float: left;
  min-height: 1px;
  padding: .8rem;
}

.col-1{ width: 16.666%;}
.col-2{ width: 33.333%;}
.col-3{ width: 50%;    }
.col-4{ width: 66.666%;}
.col-6{ width: 100%;  }

@media (max-width: 1024px){
  .col-1{ width: 33.333%;}
}

@media (max-width: 768px){
    .size{
        width: 400px;
    }

    .paging{
        font-size: 1.6rem;
    }

    .col-1{ width: 50%;  }
    .col-2{ width: 100%; }
    .col-3{ width: 100%; }
    .col-4{ width: 100%; }
}

@media (max-width: 500px){
    h1{
     font-size: 2.4rem;     
     margin-bottom: 2rem;
    }

  .col-1{ width: 100%; }
  .col-2{ width: 100%; }
  .col-3{ width: 100%; }
  .col-4{ width: 100%; }

    p{
        font-size: 2.5rem;
    }
}

@media (max-width: 400px){
    .size{
        width: 300px;
    }
    .link-text {
        font-size: 1.9rem;
    }

    .inactiveLink {
        pointer-events: none;
        cursor: default;
        color: gray;
        text-decoration: none;
        font-size: 2.0rem;
    }

    .some-text{
        font-size: 1.5rem;
    }

    .standard-text{
        font-size: 1.5rem;
    }

    .blue{
        color: royalblue;
    }

    .mark-text {
        font-size: 2.0rem;
    }

    .headline-text {
        font-size: 2.0rem;
    }

    .mark-text2 {
        font-size: 1.5rem;
    }
    .mob-keepSpace{
        margin-bottom: 1.5rem;
    }
}