title {
    "Field-Goal"
}

/* Meta charset */
@charset "UTF-8";

.hidden {
    display: none;
}

.main {
    background-color: lightgray;
    color: #FFFFFF;
    font-size: 1em;
    font-style: normal;
    font-family: Times New Roman;
}

.text {
    background-color: #000000;
    color: #FFFFFF;
    display: inline-block;
    margin: 5px;
    padding: 10px;
}

/* Styling für das Dropdown-Menü */
.top-menu{
    position: fixed; /* changed from sticky to fixed */
    top: 0;
    left: 0; /* added to fix the menu to the left */
    width: 100%;
    background-color: #555555;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    height: 42px;
    margin-bottom: 5px;
    z-index: 9999; /* added to ensure the menu is on top of everything */
}

.dropdown {
    position: relative; /* changed from sticky to relative */
    display: inline-block;
    min-width: 100px;
    max-width: 180px;
}
.dropdown a {
    color: #FFFFFF;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown a:hover{
    background-color: #333333;
}

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

.dropdown:hover .dropdown-content {
    display: block;
}
    
/* Stil für die Links im Dropdown-Menü */
.dropdown-content a {
    color: #FFFFFF;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

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

/* Stil für das Login-Icon */

.dropdown-login-icon {
    position: absolute;
    top: 0px;
    right: 30px;
    z-index: 9999;
}

.dropdown-login-icon img {
    width: 20px;
    height: 20px;
    padding: 12px 16px 5px;
}

.dropdown-hamburger-icon {
    position: absolute;
    top: 0px;
    right: 10px;
    z-index: 9999;
}

.dropdown-hamburger-icon img {
    width: 20px;
    height: 20px;
    padding: 12px 16px 5px;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    background-color: #555555;
    padding: 20px;
}

.sidebar a {
    color: #FFFFFF;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.sidebar a:hover {
    background-color: #333333;
}

.sidebar.open {
    display: block;
}

/* Media Queries */

/* Kleine Bildschirme (bis 480px) */
@media screen and (max-width: 480px) {
    .dropdown {
        display: none;
    }
    
    .top-menu {
        line-height: 20px;
    }
}

/* Mittlere Bildschirme (481px bis 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .dropdown {
        display: none;
    }
    
    .top-menu {
        line-height: 20px;
    }
}

/* Entfernen der Unterstreichung für Links */
a {
    text-decoration: none;
}

.container {
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%%;
    position: relative;
    top: 42px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin: 10px;
    margin-top: 13px;
    margin-bottom: 5px;
}

.container-second {
    position: relative;
    width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.liga-saisonauswahl{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0; /* Abstand zu den H2-Überschriften */
}

.item {
    margin: 10px;
    text-align: center;
    flex-grow: 1;
    flex-shrink: 1;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Tabellen */
.table {
    border-collapse: collapse;
    width: 100%;
    table-layout: auto;
}

.table th, .table td {
    padding: 8px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table th {
    background-color: #555555;
    color: white;
}

.table th a {
    background-color: #555555;
    color: white;
}

.table td {
    border: 1px solid black;
    background-color: #333;
    color: white;
}

.table td a {
    color: white;
}

.table td a:hover {
    color: lightblue;
}

.col-pos {
  min-width: 10px;
  max-width: 20px;
}

.col-logo {
  min-width: 10px;
  max-width: 20px;
}

.col-gespielte-spiele {
  min-width: 50px;
  max-width: 180px;
}

.col-s-n-u {
  min-width: 60px;
  max-width: 120px;
}

.col-plus-minus {
  min-width: 40px;
  max-width: 80px;
}

.col-differenz {
  min-width: 60px;
  max-width: 120px;
}
/* Sidebarmenu */

.menu-bar {
    width: 100%;
    padding: 5px 0;
    margin-bottom: 5px;
    background-color: #555555;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
}

.menu-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.menu-bar ul li {
    display: inline;
    margin: 0 15px;
}

.menu-bar ul li a {
    color: white; /* Textfarbe */
    text-decoration: none;
    font-size: 16px;
    padding: 3px 0px;
    margin: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu-bar ul li a:hover {
    background-color: darkgray; /* Hover-Effekt Farbe */
}
/* Kontaktformular */
.contact-form {
    text-align: center;
}

.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form input[type="submit"] {
    display: block;
    margin: 10px auto;
}

.contact-form input,
.contact-form textarea {
    width: 300px;
    padding: 5px;
}

.contact-form input[type="submit"] {
    width: 150px;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.row {
  display: flex; /* Flexbox-Layout für die Zeile */
  flex-wrap: wrap; /* Zeile umbrechen, wenn die Breite erreicht ist */
  justify-content: space-between; /* Abstand zwischen den Elementen */
}

/* col-md-6-Klasse */
.col-md-6 {
  width: 50%; /* Breite des Elements auf 50% setzen */
  padding: 2px; /* Innenabstand von 20px */
  box-sizing: border-box; /* Innenabstand und Rahmen berücksichtigen */
}

/* Media-Query für kleinere Bildschirme */
@media (max-width: 768px) {
 .col-md-6 {
    width: 100%; /* Breite des Elements auf 100% setzen bei kleinen Bildschirmen */
  }
}

@media (max-width: 1024px) {
 .col-md-6 {
    width: 75%; /* Breite des Elements auf 100% setzen bei kleinen Bildschirmen */
  }
}

@media (max-width: 1280px) {
 .col-md-6 {
    width: 100%; /* Breite des Elements auf 100% setzen bei kleinen Bildschirmen */
  }
}

 .player-info-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0px;
        }

        .player-info-card {
            background-color: #333;
            color: #fff;
            margin: 10px;
            padding: 0px;
            border-radius: 10px;
            width: 50%;
            box-sizing: border-box;
        }

        .player-info-card h2 {
            margin-top: 0;
            color: #FFD700;
        }

        .player-info-card table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .player-info-card th, .player-info-card td {
            border: 1px solid #555;
            padding: 8px;
            text-align: left;
        }

        .player-info-card th {
            background-color: #444;
        }
h1, h2, h3, h4, h5, h6 {
    color: #FFD700;
    padding-top: 0px;
    margin-top: 0px;
}
.tabs {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }
        .tabs button {
            padding: 10px 20px;
            background-color: #555;
            color: #fff;
            border: none;
            cursor: pointer;
        }
        .tabs button.active {
            background-color: #333;
        }
        .play-table {
            width: 100%;
            border-collapse: collapse;
        }
        .play-table th, .play-table td {
            border: 1px solid #ccc;
            padding: 8px;
            text-align: center;
        }
        .play-table th {
            background-color: #555;
            color: white;
        }
        .play-table select {
            width: 100%;
            padding: 5px;
        }
        .save-button {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
        }

        .liveticker {
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            border: 1px solid #ccc;
            padding: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        .event {
            margin: 10px 0;
        }
