* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #151f2e; /**/
    color: #000;
    overflow-x: hidden;
    height: 100vh; /* Full viewport height */
    min-width: 380px;
}
.container { 
    display: flex;
    flex-direction: column;
    gap: 1px;
    /*padding: 10px; /**/
    /*border: 2px solid red; /**/
    max-width: 100%;
    overflow-x: hidden;
    flex: 1; /* Allow it to fill available space */
    height: 100%; /* Take full height of the body */
}

    /*  Top-Band Styles  ---------------------------------------------------------------------------------------------------*/
    /*     Start         ---------------------------------------------------------------------------------------------------*/
.top_band {
    width: 100%;
    height: auto; /* Fixed height */
    display: flex;
    flex-direction: row;
    flex-shrink: 0; /* Prevents shrinking */
    padding: 10px;
    border-bottom: 2px groove #0F1820;
    background-color: #010715;
    color: #a0b1b6;
}
.top_band .tb_logo {
    width: auto;
    height: 110px;
    margin: 10px;
    /* border: 1px solid black; */
}
.top_band .tb_logo a img {
    /*position: center; /**/
    height: 100%;
    width: auto;
    border-radius: 4px; /* Rounded corners */
}
.top_band .tb_text_big, .top_band .tb_text_small {
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
    /* border: 1px solid black; */
}
.top_band .tb_text_small a {
    color: #a0b1b6;
    text-decoration: none;
    cursor: pointer; /* Show pointer cursor on hover */
}
.top_band .tb_text_small a:hover {
    color: #780188;
    font-weight: bold;
}
@media only screen and (max-width: 1000px) {
    .top_band .tb_text_big, .top_band .tb_logo {
        display: none; /* Hide logo and big text */
    }
}
@media only screen and (min-width: 1001px) {
    .top_band .tb_text_small {
        display: none; /* Hide small text */
    }
}

    /*  Main Styles  ---------------------------------------------------------------------------------------------------*/
    /*     Start     ---------------------------------------------------------------------------------------------------*/    
.main { 
    display: flex;
    flex-direction: row;
    gap: 1px;
    padding: 2px; /**/
    /*border: 2px solid blue; /**/
    background-color: #151f2e; /**/
    max-width: 100%;
    min-width: 380px;
    flex: 1; /* Allows it to fill remaining space */
}
@media only screen and (max-width: 1000px) {
    .main {
        flex-direction: column;
    }
}

    /*  Menu Styles  ---------------------------------------------------------------------------------------------------*/
    /*     Start     ---------------------------------------------------------------------------------------------------*/
.slidebtn {
    display: flex;
    flex-direction: column;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 200px; /* Adjust top position as needed */
    left: 0px; /* Adjust right position as needed */
    z-index: 9999; /* Ensure it's above other content */
    width: 40px; /* Adjust width as needed */
    height: auto; /* Adjust height as needed */
    padding: 10px 3px; /**/
    color: #a0b1b6;
    background-color: #0b1622;
    border: 1px solid black;
    border-left: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 25px;
    opacity: 70%;
}
.slidebtn .line {
    width: 15px;
    height: 3px;
    background-color: #a0b1b6;
    margin: 2px 0; /* Adjust margin for spacing */
    border-radius: 3px;
}
.slidebtn:active {
    transform: translateX(2px);
}
.slide-content {
    display: none;
    flex-direction: column; /* Stack children vertically */
    min-width: 250px;
    max-width: 250px;
    border: 1px solid black;
    background-color: #0b1622; /*background of menu */
    border: 1px solid #0b1622; /* Just for visual separation */
    border-radius: 5px; /* Rounded corners */
    list-style-type: none; /* Remove default list-style (bullets) */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    padding: 10px;
    flex: 1 1 auto; /* Ensures it fills the entire height */
    overflow-y: auto; /* Enables scrolling if needed */
}
.slide-content a {
    color: #a0b1b6; /* Set the text color for the top band */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}
.slide-content a:hover {
    background-color: #010715; /* Background color of the button */
    border-radius: 8px; /* Rounded corners */
}
.slide-content a:active {
    transform: translateY(2px); /* Move the button down slightly when pressed */
}
.slide-content.show {
    display: flex;
}
.slidebtn.show {
    left: 250px;
}
@media only screen and (max-width: 1000px) {
    .slidebtn, .slide-content, .slide-content.show {
        display: none; /* Hide small text */
    }
}
.main_menu_small {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 10px;
    margin-bottom: 10px;
    min-height: auto;
    background-color: #151f2e; /* Set the background color for the top band */
    color: #a0b1b6; /* Set the text color for the top band */
    height: auto;
    border: 2px solid #010715; /* Border style and color */
    border-radius: 8px; /* Rounded corners */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle effect */
    text-align: center; /* Center text horizontally */
    transition: height 0.3s ease; /* Smooth dropdown animation */
    align-items: center;
    justify-content: center;
    padding: 2px;
}
.main_menu_small .dropbtn {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 4px 0;
}
.main_menu_small .dropbtn:active {
    transform: translateY(2px);
}
.dropbtn .line {
    width: 30px;
    height: 5px;
    background-color: #a0b1b6;
    margin: 2px 0; /* Adjust margin for spacing */
    border-radius: 5px;
}
.main_menu_small .dropdown-content {
    display: none;
    text-align: center;
    width: 100%;
    background-color: #0b1622;
    margin-top: 5px;
}
.main_menu_small .dropdown-content a {
    color: #a0b1b6; /* Set the text color for the top band */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 17px;
}
.main_menu_small .dropdown-content a:hover {
    font-weight: bold;
    /*color: #780188; /**/
    background-color: #010715; /* Background color of the button */
    border-radius: 8px; /* Rounded corners */
    font-size: 18px;
}
.main_menu_small .dropdown-content a:active {
    transform: translateY(2px); /* Move the button down slightly when pressed */
}
.dropdown-content.show {
    display: block;
}
@media only screen and (min-width: 1001px) {
    .main_menu_small {
        display: none; /* Hide small text */
    }
}

    /*  Index Styles  ---------------------------------------------------------------------------------------------------*/
    /*     Start      ---------------------------------------------------------------------------------------------------*/
.index-box {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}
.index-box .col_main {
    max-width: 100%;
    min-width: 200px;
    height: 100%;
    text-align: center;
    z-index: 2; /* Ensure the content is above the top band */
    color: white;
    padding: 0px 10px;
}
.index-box .col_main h3 {
    text-decoration: underline;
    font-size: 22px;
}
.index-box .col_main p {
    font-size: 18px;
    line-height: 1.3;
}
.index-box .col_caps {
    height: auto;
    padding: 0 10px; /* Add padding at the top */
    
    /* Fading border effect */
    border-top: 5px solid transparent; /* Keeps transparent space for the "border" */
    background-image: linear-gradient(to right, 
        transparent 0%,  /* Start fade */
        #0b1622 15%,         /* Solid border starts */
        #0b1622 85%,         /* Solid border ends */
        transparent 100%);  /* End fade */
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: top;
    
    /* Add some space between the text and the border */
    padding-top: 15px; /* Adjust this value based on your preference */
    padding-bottom: 10px;
}
.index-box .col_caps h2 {
    color: #a0b1b6;
}
.index-box .col_caps .title-div {
    position: relative;
    width: 60%;
    height: auto;
    background-color: #010715;
    /*border: 3px solid #000; /* */
    text-align: left;
    color: #a0b1b6;
    padding: 10px;
    padding-left: 20px;
    border-radius: 15px; /* */
}
.index-box .col_caps .slide-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Allow img-divs to wrap to the next row */
    justify-content: center; /* Center align img-divs horizontally */
    /*gap: 10px; /* Add space between img-divs */
    margin-top: 5px; /* Adjust spacing between title-div and img-container */
    margin-bottom: 5px; /* Adjust spacing between title-div and img-container */
}
.index-box .col_caps .slide-container .img-div {
    /*position: relative; /* */
    flex: 0 0 9%; /* Set a fixed width for each img-div */
    height: auto;
    background-color: #0b1622;
    text-align: center;
    color: #a0b1b6;
    padding: 0.3%;
    border-radius: 15px; /* */
}
.index-box .col_caps .slide-container .img-div img {
    width: 100%; /* Set the width of the image to 100% */
    min-width: 80px;
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    margin: 0 auto; /* Center the image within the cell */
    border-radius: 15px; /* */
}

    /*  All Styles  ---------------------------------------------------------------------------------------------------*/
    /*     Start    ---------------------------------------------------------------------------------------------------*/
.all-box {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}
.all-box .slide-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap; /* Allow img-divs to wrap to the next row */
    justify-content: center; /* Center align img-divs horizontally */
    margin-top: 5px; /* Adjust spacing between title-div and img-container */
    margin-bottom: 5px; /* Adjust spacing between title-div and img-container */
    padding: 0px 50px 30px 50px;
}
.all-box .slide-container .img-div {
    /*position: relative; /* */
    flex: 0 0 10%; /* Set a fixed width for each img-div */
    height: auto;
    background-color: #0b1622;
    text-align: center;
    color: #a0b1b6;
    padding: 0.3%;
    border-radius: 15px; /* */
}
.all-box .slide-container .img-div img {
    width: 100%; /* Set the width of the image to 100% */
    min-width: 80px;
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    margin: 0 auto; /* Center the image within the cell */
    border-radius: 15px; /* */
}
.all-box .slide-control {
    position: relative;
    width: 80%;
    background-color: #010715;
    /*border: 3px solid #000; /* */
    text-align: center;
    color: #a0b1b6;
    padding: 10px;
    margin: 15px auto;
    border-radius: 15px; /* */
    font-weight: bold;
}
.all-box .slide-control  a {
    color: #a0b1b6;
    text-decoration: none;
    cursor: pointer; /* Show pointer cursor on hover */
}
.all-box .slide-control  a:hover {
    color: #780188;
    font-weight: bold;
}

    /*  Alle Styles  ---------------------------------------------------------------------------------------------------*/
    /*     Start     ---------------------------------------------------------------------------------------------------*/
.unknown-box {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
    
}
.unknown-box .info-box {
    position: relative;
    background-color: #0b1622; /* Set the background color for the top band */
    color: #a0b1b6; /* Set the text color for the top band */
    height: auto;
    padding: 20px;
    margin: 20px;
    border: 2px solid #010715; /* Border style and color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle effect */
    text-align: center; /* Center text horizontally */
}
.unknown-box .info-box h3 {
    color: #a0b1b6; /* Set the text color for the top band */
    text-decoration: underline;
}
.unknown-box .info-box p {
    color: #a0b1b6; /* Set the text color for the top band */
    font-size: 17px;
}
.unknown-box .info-box a {
    color: #a0b1b6;
    text-decoration: none;
    cursor: pointer; /* Show pointer cursor on hover */
}
.unknown-box .info-box a:hover {
    color: #780188;
    font-weight: bold;
}
.unknown-box .col_caps {
    height: auto;
    padding: 0 10px; /* Add padding at the top */
    
    /* Fading border effect */
    border-top: 5px solid transparent; /* Keeps transparent space for the "border" */
    background-image: linear-gradient(to right, 
        transparent 0%,  /* Start fade */
        #0b1622 15%,         /* Solid border starts */
        #0b1622 85%,         /* Solid border ends */
        transparent 100%);  /* End fade */
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: top;
    
    /* Add some space between the text and the border */
    padding-top: 15px; /* Adjust this value based on your preference */
    padding-bottom: 10px;
}
.unknown-box .col_caps .title-div {
    position: relative;
    width: 60%;
    height: auto;
    background-color: #010715;
    text-align: center;
    color: #a0b1b6;
    padding: 10px;
    border-radius: 15px; /* */
    margin: 0 auto;
    font-weight: bold;
}
.unknown-box .slide-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap; /* Allow img-divs to wrap to the next row */
    justify-content: center; /* Center align img-divs horizontally */
    margin-top: 5px; /* Adjust spacing between title-div and img-container */
    margin-bottom: 5px; /* Adjust spacing between title-div and img-container */
    padding: 0px 50px 30px 50px;
}
.unknown-box .slide-container .img-div {
    /*position: relative; /* */
    flex: 0 0 10%; /* Set a fixed width for each img-div */
    height: auto;
    background-color: #0b1622;
    text-align: center;
    color: #a0b1b6;
    padding: 0.3%;
    border-radius: 15px; /* */
}
.unknown-box .slide-container .img-div img {
    width: 100%; /* Set the width of the image to 100% */
    min-width: 80px;
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    margin: 0 auto; /* Center the image within the cell */
    border-radius: 15px; /* */
}

/*  Search Styles  ---------------------------------------------------------------------------------------------------*/
/*     Start       ---------------------------------------------------------------------------------------------------*/
.search-box {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}
.search-box .info-box {
    position: relative;
    background-color: #0b1622; /* Set the background color for the top band */
    color: #a0b1b6; /* Set the text color for the top band */
    height: auto;
    padding: 20px;
    margin: 20px;
    border: 2px solid #010715; /* Border style and color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle effect */
    text-align: center; /* Center text horizontally */
}
.search-box .info-box h3 {
    color: #a0b1b6; /* Set the text color for the top band */
    text-decoration: underline;
}
.search-box .info-box p {
    color: #a0b1b6; /* Set the text color for the top band */
    font-size: 17px;
}
.search-box .info-box a {
    color: #a0b1b6;
    text-decoration: none;
    cursor: pointer; /* Show pointer cursor on hover */
}
.search-box .info-box a:hover {
    color: #780188;
    font-weight: bold;
}
.search-box .col_main {
    display: flex;
    flex-direction: row; /* Align buttons horizontally */
    justify-content: space-evenly; /* Optional: center the buttons horizontally */
    align-items: center; /* Optional: align buttons vertically */
    max-width: 100%;
    min-width: 200px;
    min-height: 30px;
    height: auto;
    text-align: center;
    margin: 10px 0 50px 0;
    font-size: 22px;
    font-weight: bold;
}
.search-box .col_main select {
    min-height: 30px;
    height: auto;
    width: 200px;
    text-align: center;
    font-size: 20px;
    margin: 0 10px;
    border-radius: 15px;
    background-color: #d9eefc;
    padding: 5px 0 5px 5px;
}
.search-box .col_main input {
    min-height: 30px;
    height: auto;
    width: 400px;
    text-align: center;
    font-size: 20px;
    margin: 0 10px;
    border-radius: 15px;
    background-color: #d9eefc;
    padding: 5px;
}
.search-box .col_main button {
    min-height: 30px;
    height: auto;
    width: 100px;
    font-size: 20px;
    background-color: #0b1622;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #a0b1b6;
    border: 2px solid #010715;
    border-radius: 8px;
    padding: 5px 0;
    background-color: #0b1622;
    text-align: center;
    margin-right: 150px;
}
.search-box .col_main button:hover {
    background-color: #010715; /* Background color of the button */
}
.search-box .col_main button:active {
    background-color: #151f2e;
    transform: translateY(2px); /* Move the button down slightly when pressed */
}
.search-box .col_caps {
    height: auto;
    padding: 0 10px; /* Add padding at the top */
    
    /* Fading border effect */
    border-top: 5px solid transparent; /* Keeps transparent space for the "border" */
    background-image: linear-gradient(to right, 
        transparent 0%,  /* Start fade */
        #0b1622 15%,         /* Solid border starts */
        #0b1622 85%,         /* Solid border ends */
        transparent 100%);  /* End fade */
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: top;
    
    /* Add some space between the text and the border */
    padding-top: 15px; /* Adjust this value based on your preference */
    padding-bottom: 10px;
}
.search-box .col_caps h2 {
    color: #a0b1b6;
}
.search-box .col_caps .title-div {
    position: relative;
    width: 60%;
    height: auto;
    background-color: #010715;
    /*border: 3px solid #000; /* */
    text-align: left;
    color: #a0b1b6;
    padding: 10px;
    padding-left: 20px;
    border-radius: 15px; /* */
}
.search-box .col_caps .slide-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Allow img-divs to wrap to the next row */
    justify-content: center; /* Center align img-divs horizontally */
    /*gap: 10px; /* Add space between img-divs */
    margin-top: 5px; /* Adjust spacing between title-div and img-container */
    margin-bottom: 5px; /* Adjust spacing between title-div and img-container */
}
.search-box .col_caps .slide-container .img-div {
    /*position: relative; /* */
    flex: 0 0 9%; /* Set a fixed width for each img-div */
    height: auto;
    background-color: #0b1622;
    text-align: center;
    color: #a0b1b6;
    padding: 0.3%;
    border-radius: 15px; /* */
}
.search-box .col_caps .slide-container .img-div img {
    width: 100%; /* Set the width of the image to 100% */
    min-width: 80px;
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    margin: 0 auto; /* Center the image within the cell */
    border-radius: 15px; /* */
}
@media only screen and (max-width: 1000px) {
    .search-box .col_main {
        flex-direction: column;
    }
    .search-box .col_main input {
        width: 350px;
        margin: 20px 0;
    }
    .search-box .col_main button {
        margin: 0;
    }
}

/*  Category Styles  ---------------------------------------------------------------------------------------------------*/
/*     Start         ---------------------------------------------------------------------------------------------------*/
.category-box {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}
.category-box .info-box {
    position: relative;
    background-color: #0b1622; /* Set the background color for the top band */
    color: #a0b1b6; /* Set the text color for the top band */
    height: auto;
    padding: 20px;
    margin: 20px;
    border: 2px solid #010715; /* Border style and color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle effect */
    text-align: center; /* Center text horizontally */
}
.category-box .info-box h3 {
    color: #a0b1b6; /* Set the text color for the top band */
    text-decoration: underline;
}
.category-box .info-box p {
    color: #a0b1b6; /* Set the text color for the top band */
    font-size: 17px;
}
.category-box .info-box a {
    color: #a0b1b6;
    text-decoration: none;
    cursor: pointer; /* Show pointer cursor on hover */
}
.category-box .info-box a:hover {
    color: #780188;
    font-weight: bold;
}
.category-box .col_caps {
    height: auto;
    padding: 0 10px; /* Add padding at the top */
    
    /* Fading border effect */
    border-top: 5px solid transparent; /* Keeps transparent space for the "border" */
    background-image: linear-gradient(to right, 
        transparent 0%,  /* Start fade */
        #0b1622 15%,         /* Solid border starts */
        #0b1622 85%,         /* Solid border ends */
        transparent 100%);  /* End fade */
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: top;
    
    /* Add some space between the text and the border */
    padding-top: 15px; /* Adjust this value based on your preference */
    padding-bottom: 10px;
}
.category-box .col_caps h2 {
    color: #a0b1b6;
}
.category-box .col_caps .title-div {
    position: relative;
    width: 60%;
    height: auto;
    background-color: #010715;
    font-weight: bold;
    /*border: 3px solid #000; /* */
    text-align: center;
    margin: 0 auto;
    color: #a0b1b6;
    padding: 10px;
    border-radius: 15px; /* */
}
.category-box .col_caps .slide-control {
    position: relative;
    width: 40%;
    min-width: 200px;
    background-color: #010715;
    /*border: 3px solid #000; /* */
    text-align: center;
    color: #a0b1b6;
    padding: 10px;
    margin: 15px auto;
    border-radius: 15px; /* */
    font-weight: bold;
}
.category-box .col_caps .slide-control  a {
    color: #a0b1b6;
    text-decoration: none;
    cursor: pointer; /* Show pointer cursor on hover */
}
.category-box .col_caps .slide-control  a:hover {
    color: #780188;
    font-weight: bold;
}
.category-box .col_caps .slide-container {
    width: auto;
    display: flex;
    flex-wrap: wrap; /* Allow img-divs to wrap to the next row */
    justify-content: center; /* Center align img-divs horizontally */
    /*gap: 10px; /* Add space between img-divs */
    margin: 5px 30px 5px 30px;
}
.category-box .col_caps .slide-container .img-div {
    /*position: relative; /* */
    flex: 0 0 10%; /* Set a fixed width for each img-div */
    height: auto;
    background-color: #0b1622;
    text-align: center;
    color: #a0b1b6;
    padding: 0.3%;
    border-radius: 15px; /* */
}
.category-box .col_caps .slide-container .img-div img {
    width: 100%; /* Set the width of the image to 100% */
    min-width: 80px;
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    margin: 0 auto; /* Center the image within the cell */
    border-radius: 15px; /* */
}

/*  Category Styles  ---------------------------------------------------------------------------------------------------*/
/*     Start         ---------------------------------------------------------------------------------------------------*/
.stats-box {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    padding: 10px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}
.stats-box .info-box {
    position: relative;
    background-color: #0b1622; /* Set the background color for the top band */
    color: #a0b1b6; /* Set the text color for the top band */
    height: auto;
    padding: 20px;
    margin: 20px;
    border: 2px solid #010715; /* Border style and color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle effect */
    text-align: center; /* Center text horizontally */
}
.stats-box .info-box h3 {
    color: #a0b1b6; /* Set the text color for the top band */
    text-decoration: underline;
}
.stats-box .info-box p {
    color: #a0b1b6; /* Set the text color for the top band */
    font-size: 17px;
}
.stats-box .col_stats {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    height: auto;
}
.stats-box .col_stats .title-div {
    position: relative;
    width: 60%;
    height: auto;
    background-color: #010715;
    font-weight: bold;
    /*border: 3px solid #000; /* */
    text-align: center;
    margin: 0 auto 10px auto;
    color: #a0b1b6;
    padding: 10px;
    border-radius: 15px; /* */
}
.stats-box .col_stats .box {
    display: flex;
    flex-direction: column;
    height: 160px;
    width: auto;
    flex-wrap: wrap;
    align-content: center;
    padding: 0 30px;
}
.stats-box .col_stats .box .entry{
    display: flex;
    flex-direction: row;
    height: auto;
    width: 40%;
    max-width: 100%;
    padding: 5px 0;
    justify-content: space-around;
}
.stats-box .col_stats .box .entry .label{
    height: auto;
    width: 100%;
    border-radius: 15px;
    background-color: #010715;
    font-weight: bold;
    text-align: center;
    color: #a0b1b6;
    padding: 10px 0;
}
.stats-box .col_stats .box .entry .value{
    height: auto;
    width: 100%;
    border-radius: 15px;
    background-color: #0b1622;
    font-weight: bold;
    text-align: center;
    color: #a0b1b6;
    padding: 10px 0;
}
@media only screen and (max-width: 1000px) {
    .stats-box .col_stats .box {
        height: auto;
        padding: 0;
    }
    .stats-box .col_stats .box .entry {
        width: 95%;
        height: auto;
    }
}
.stats-box .col_graph1 {
    width: 100%;
    height: auto;
    display: flex; 
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    margin: 5px 0;
    text-align: center;
    position: relative;
}
.stats-box .col_graph1 .bar-graph {
    flex: 0 0 45%;
    height: auto;
    min-width: 300px;
    border: 1px solid #000; 
    background: #0b1622; 
    border-radius: 3px;
    padding: 20px;
    margin: 5px auto;
}
.stats-box .col_graph1 .bar-graph .title-div {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #010715;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 10px auto;
    color: #a0b1b6;
    padding: 10px;
    border-radius: 3px; /* */
}
.stats-box .col_graph1 .bar-graph .gh_box {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: space-around;
    padding: 5px 0 5px 0;
    justify-content: center;
}
.stats-box .col_graph1 .bar-graph .gh_box .gh-land {
    width: 300px;
    height: 30px;
    color: #a0b1b6;
    text-align: right;
    display:block;
    align-content: center;
    padding-right: 3px;
}
.stats-box .col_graph1 .bar-graph .gh_box .gh-count {
    width: 100px;
    height: 30px;
    color: #a0b1b6;
    text-align: left;
    display:block;
    align-content: center;
    padding-left: 3px;
}
.stats-box .col_graph1 .bar-graph .gh_box .gh-bar {
    width: 100%;
    height: 30px;
    padding: 3px 0;
}
.stats-box .col_graph1 .bar-graph .gh_box .gh-bar .bar-bar {
    position: relative;
    height: 20px;
    background-color: #b368e6;
    border: 1px solid #471a66;
    text-align: right;
    border-top-right-radius: 4px; /* */
    border-bottom-right-radius: 4px; /* */
}
@media only screen and (max-width: 1500px) {
    .stats-box .col_graph1 {
        padding: 5px;
        margin: 0;
    }
    .stats-box .col_graph1 .bar-graph {
        flex: 0 0 100%;
    }
}
.stats-box .col_graph2 {
    width: 100%;
    height: auto;
    padding: 20px 60px;
    margin: 5px 0;
    text-align: center;
    position: relative;
}
.stats-box .col_graph2 .bar-graph {
    width: 100%;
    height: auto;
    border: 1px solid #000; 
    background: #0b1622; 
    border-radius: 3px;
    padding: 20px;
    margin: 5px auto;
}
.stats-box .col_graph2 .bar-graph .title-div {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #010715;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 10px auto;
    color: #a0b1b6;
    padding: 10px;
    border-radius: 3px; /* */
}
.stats-box .col_graph2 .bar-graph .canvas-graph {
    flex: 0 0 90%; /* Set a fixed width for each img-div */
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    background: #0b1622; 
    border-radius: 3px; /* */
    padding: 20px;
    margin-top: 5px; /* Adjust spacing between title-div and img-container */
    margin-bottom: 5px; /* Adjust spacing between title-div and img-container */
}
.stats-box .col_graph2 .bar-graph .canvas-graph canvas {
    height: 300px !important;
    width: 100%;
}
@media only screen and (max-width: 1500px) {
    .stats-box .col_graph2 {
        padding: 5px;
        margin: 0;
    }
    .stats-box .col_graph2 .bar-graph {
        flex: 0 0 100%;
    }
}
.stats-box .col_program {
    width: 60%;
    height: auto;
    text-align: center;
    color: #a0b1b6;
    border: 1px solid #000;
    border-radius: 3px;
    background: #0b1622;
    padding: 20px;
    margin: auto
}
@media only screen and (max-width: 1500px) {
    .stats-box .col_program {
        width: 70%;
    }
}

/*  Cap Styles  ---------------------------------------------------------------------------------------------------*/
/*     Start    ---------------------------------------------------------------------------------------------------*/
.cap-box {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    padding: 10px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}
.cap-box .info-box {
    position: relative;
    background-color: #0b1622;
    color: #a0b1b6;
    height: auto;
    padding: 20px;
    margin: 20px;
    border: 2px solid #010715;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.cap-box .info-box h3 {
    color: #a0b1b6; /* Set the text color for the top band */
    text-decoration: underline;
}
.cap-box .info-box p {
    color: #a0b1b6; /* Set the text color for the top band */
    font-size: 17px;
}
.cap-box .info-box a {
    color: #a0b1b6;
    text-decoration: none;
    cursor: pointer; /* Show pointer cursor on hover */
}
.cap-box .info-box a:hover {
    color: #780188;
    font-weight: bold;
}
.cap-box .col_stats {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0 30px ;
}
.cap-box .col_stats .stat-img {
    width: 50%;
    height: auto;
    padding-right: 5%;
}
.cap-box .col_stats .stat-img .img {
    flex: 0 0 100%;
    min-width: 100px;
    max-width: 300px;
    height: auto;
    min-height: 100px;
    max-height: 300px;
    background-color: #0b1622;
    text-align: center;
    color: #a0b1b6;
    padding: 0.3%;
    border-radius: 15px;
    margin-left: auto;
}
.cap-box .col_stats .stat-img .img img {
    width: 100%;
    min-width: 300px;
    max-height: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 30px;
}
.cap-box .col_stats .stat-inf {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: auto;
    justify-content: center;
    align-items: center;
}
.cap-box .col_stats .stat-inf .box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    margin: 1px;
}
.cap-box .col_stats .stat-inf .box .label {
    width: 50%;
    max-width: 300px;
    height: auto;
    text-align: center;
    padding: 10px;
    background-color: #010715;
    font-weight: bold;
    color: #a0b1b6;
    border-radius: 15px;
}
.cap-box .col_stats .stat-inf .box .value {
    width: 50%;
    max-width: 300px;
    height: auto;
    text-align: center;
    padding: 10px;
    background-color: #0b1622;
    color: #a0b1b6;
    border-radius: 15px;
}
@media only screen and (max-width: 1000px) {
    .cap-box .col_stats {
        flex-direction: column;
    }
    .cap-box .col_stats .stat-img {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    .cap-box .col_stats .stat-img .img {
        margin: auto;
    }
    .cap-box .col_stats .stat-inf {
        width: 100%;
        height: auto;
        margin: 0;
    }
    .cap-box .col_stats .stat-inf .box .label, .cap-box .col_stats .stat-inf .box .value {
        max-width: 50%;
    }
}
.cap-box .col_rest {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}
.cap-box .col_rest .rest-title {
    height: auto;
    padding: 20px;
    margin: 0 10px;
}
.cap-box .col_rest .rest-title h2 {
    color: #a0b1b6;
}
.cap-box .col_rest .col_caps {
    height: auto;
    padding: 0 10px; /* Add padding at the top */
    
    /* Fading border effect */
    border-top: 5px solid transparent; /* Keeps transparent space for the "border" */
    background-image: linear-gradient(to right, 
        transparent 0%,  /* Start fade */
        #0b1622 15%,         /* Solid border starts */
        #0b1622 85%,         /* Solid border ends */
        transparent 100%);  /* End fade */
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: top;
    
    /* Add some space between the text and the border */
    padding-top: 15px; /* Adjust this value based on your preference */
    padding-bottom: 10px;
}
.cap-box .col_rest .col_caps .title-div {
    position: relative;
    width: 60%;
    height: auto;
    background-color: #010715;
    font-weight: bold;
    /*border: 3px solid #000; /* */
    text-align: center;
    margin: 0 auto;
    color: #a0b1b6;
    padding: 10px;
    border-radius: 15px; /* */
}
.cap-box .col_rest .col_caps .slide-container {
    width: auto;
    display: flex;
    flex-wrap: wrap; /* Allow img-divs to wrap to the next row */
    justify-content: center; /* Center align img-divs horizontally */
    /*gap: 10px; /* Add space between img-divs */
    margin: 5px 30px 5px 30px;
}
.cap-box .col_rest .col_caps .slide-container .img-div {
    /*position: relative; /* */
    flex: 0 0 10%; /* Set a fixed width for each img-div */
    height: auto;
    background-color: #0b1622;
    text-align: center;
    color: #a0b1b6;
    padding: 0.3%;
    border-radius: 15px; /* */
}
.cap-box .col_rest .col_caps .slide-container .img-div img {
    width: 100%; /* Set the width of the image to 100% */
    min-width: 80px;
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    margin: 0 auto; /* Center the image within the cell */
    border-radius: 15px; /* */
}

/*  Serien Styles  ---------------------------------------------------------------------------------------------------*/
/*     Start       ---------------------------------------------------------------------------------------------------*/
.series-box {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    padding: 10px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}
.series-box .info-box {
    position: relative;
    background-color: #0b1622;
    color: #a0b1b6;
    height: auto;
    padding: 20px;
    margin: 20px;
    border: 2px solid #010715;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.series-box .info-box h3 {
    color: #a0b1b6; /* Set the text color for the top band */
    text-decoration: underline;
}
.series-box .info-box p {
    color: #a0b1b6; /* Set the text color for the top band */
    font-size: 17px;
}
.series-box .col_image {
    /*width: 95%; /* Right div takes up 80% of the container */
    padding: 5px; /* Adjust padding as needed for your content */
    margin: 20px;
    text-align: center;
    position: relative;
    color: #a0b1b6;
    border: 5px solid #010715;
    border-radius: 5px;
}
.series-box .col_image .title-div {
    position: relative;
    width: 80%;
    height: auto;
    background-color: #010715;
    font-weight: bold;
    /*border: 3px solid #000; /* */
    font-size: 25px;
    text-align: center;
    margin: 15px auto 10px auto;
    color: #a0b1b6;
    padding: 10px;
    border-radius: 15px; /* */
}
.series-box .col_image .stern-img  {
    margin: 20px;
    text-align: center;
    position: relative;
    color: #a0b1b6;
    border-radius: 5px;
}
.series-box .col_image .stern-img #stern  {
    width: 100%; /* Set the width of the image to 100% */
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    border-radius: 30px; /* */
    color: #a0b1b6;
}
.series-box .col_image #single_cap {
    width: 100%; /* Set the width of the image to 100% */
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    margin: 0 auto; /* Center the image within the cell */
    border-radius: 30px; /* */
}
@media only screen and (max-width : 1000px){
    .series-box .col_image {
        display: none;
    }
}
.series-box .col_list {
    /*width: 95%; /* Right div takes up 80% of the container */
    padding: 5px; /* Adjust padding as needed for your content */
    text-align: center;
    position: relative;
    color: #a0b1b6;
}
.series-box .col_list .col_caps {
    height: auto;
    padding: 0 10px; /* Add padding at the top */
    
    /* Fading border effect */
    border-top: 5px solid transparent; /* Keeps transparent space for the "border" */
    background-image: linear-gradient(to right, 
        transparent 0%,  /* Start fade */
        #0b1622 15%,         /* Solid border starts */
        #0b1622 85%,         /* Solid border ends */
        transparent 100%);  /* End fade */
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: top;
    
    /* Add some space between the text and the border */
    padding-top: 15px; /* Adjust this value based on your preference */
    padding-bottom: 10px;
}
.series-box .col_list .col_caps .title-div {
    position: relative;
    width: 60%;
    height: auto;
    background-color: #010715;
    font-weight: bold;
    /*border: 3px solid #000; /* */
    text-align: center;
    margin: 0 auto;
    color: #a0b1b6;
    padding: 10px;
    border-radius: 15px; /* */
}
.series-box .col_list .col_caps .slide-container {
    width: auto;
    display: flex;
    flex-wrap: wrap; /* Allow img-divs to wrap to the next row */
    justify-content: center; /* Center align img-divs horizontally */
    /*gap: 10px; /* Add space between img-divs */
    margin: 5px 30px 5px 30px;
}
.series-box .col_list .col_caps .slide-container .img-div {
    /*position: relative; /* */
    flex: 0 0 10%; /* Set a fixed width for each img-div */
    height: auto;
    background-color: #0b1622;
    text-align: center;
    color: #a0b1b6;
    padding: 0.3%;
    border-radius: 15px; /* */
}
.series-box .col_list .col_caps .slide-container .img-div img {
    width: 100%; /* Set the width of the image to 100% */
    min-width: 80px;
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
    margin: 0 auto; /* Center the image within the cell */
    border-radius: 15px; /* */
}
@media only screen and (min-width : 1001px){
    .series-box .col_list #sternburger {
        display: none;
    }
}


/*===============================================================*/
.column {
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes up remaining space */
    min-width: 300px;
    border: 3px solid pink;
    padding: 10px;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}
.column .col_down {
    max-width: 100%;
    min-width: 200px;
    height: 30px;
    border: 1px dotted pink;
}