* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: Arial, sans-serif;
    height: 100%;
    overflow-x: hidden;
    background: #254B6E;
    font-size: 15px;
}

body {
    overflow-y: hidden; /* Kein doppelter Scroll */
}

.navileiste {
    float: right;
}

.navileiste span[class^="mif-"]{
    color: white;
}
.container a {
    color: #254B6E;
    
}

.topbar {
    height: 60px;
    width: 100%;
    background: #254B6E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* wichtig für linksbündig */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.topbar-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 14px;
    margin-left: 20px;
}


.topbar-inner span[class^="mif-"] {
    color: white;
    padding-right: 10px;
}

.topbar-inner a {
    color: #f0d81b;
    vertical-align: top;
    padding-left: 15px;
}

.d-inline-block-md {
    color: #f0d81b;
    vertical-align: super;
}

.layout {
    display: flex;
    margin-top: 60px; /* Platz für Topbar */
    height: calc(100vh - 60px);
    overflow: hidden;
}

.sidebar {
    width: 220px;
    color: white;
    background: #254B6E;
    padding-top: 10px;
    flex-shrink: 0;
    overflow-y: auto;
    height: calc(100vh - 60px);
    position: fixed;
    top: 60px;
    left: 0;
    transition: left 0.3s ease;
    z-index: 999;
}

.sidebar ul {
    list-style: none;
    color: #f0d81b;
}

.sidebar li {
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 0px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
    color: #f0d81b;
}

.sidebar li:hover {
    background: #f0d81b;
    color: #000000;
    text-shadow: 2px 2px 4px rgb(36, 74, 111,0.25);
}

.sidebar li.active {
    background: #f8f8f8;
    color: #254B6E;
}

.sidebar li.active span {
    color: #254B6E !important;
}

.sidebar li:hover span {
    color: black !important;
}

.sidebar li span[class^="mif-"] {
    color: #ffffff;
    padding-left: 5px;
    padding-right: 8px;
}

.sidebar .divider {
    height: 1px;
    margin: 1px 0;
}
.sidebar-footer{
position: absolute;
left: 10px;
bottom: 10px;
color: #f0d81b;
z-index: 999;
font-size: 12px;
padding-left: 15px;
}
.sidebar-footer a{
color: #ffffff;
font-weight: bold;
}
.content {
    margin-left: 220px;
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f8f8;
    height: calc(100vh - 60px);
}

/* Inhalte */
.content-box {
    display: none;
}

.content-box.active {
    display: block;
}


.burger-btn {
    display: none;
    left: 5px;
    z-index: 1100;
    color: #f0d81b;
    background-color: #254B6E;
    border: none;
    font-size: 26px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    top: -6px;
}


/* Responsive */

@media screen and (max-width: 1200px) {
    div, body {

        font-size: 13px;
    }

    h1 {

        font-size: 15px;
    }
    h2, h3 {

        font-size: 14px;
    }
}


@media screen and (max-width:1000px) {
       .row > div {
min-width: 98%;
    box-sizing: content-box;
    }
    .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px; /* optionaler Abstand zwischen den Elementen */
    }
  
}

@media screen and (max-width: 900px) {
    .burger-btn {
        display: block;
    }



    .sidebar {
        left: -240px;
        width: 220px;
        height: calc(100% - 60px);
    }

    .sidebar.open {
        left: 0;
    }

    .content {
        margin-left: 0;
    }

    .d-inline-block-md {
        display: none;
    }
}
@media screen and (max-height: 840px) {
    .sidebar-footer {
        display: none;
    }
}

.yellow{ color: #f0d81b; }
.fg-red{ color: red; }
.fg-green{ color: green; }
.fg-lightPink{ color: lightpink; }
.fg-blue{ color: blue; }
.fg-gray{ color: gray; }

/* Typografie & Farben */
h1 {
    font-size: 18px;
    background-color: #254B6E;
    padding: 10px;
    font-weight: normal;
    color: #f0d81b;
    border-radius: 3px;
    margin-bottom: 10px;
     box-shadow: 2px 2px 4px rgb(36, 74, 111,0.25);
}

h2, h3 {
    color: #000000;
    background-color: #f0d81b;
    font-size: 16px;
    font-weight: bold;
    padding: 7px;
    border-radius: 3px;
    font-weight: normal;
    margin-top: 40px;
    margin-bottom: 20px;
     box-shadow: 2px 2px 4px rgb(36, 74, 111,0.25);
}

hr {
    background-color: #f0d81b;
    height: 3px;
    border: 0px solid #f0d81b;
    margin-top: 20px;
    margin-bottom: 20px;
}

hr.klein {
    background-color: #ffffff;
    height: 3px;
    border: 0px solid #f0d81b;
    margin-top: 20px;
    margin-bottom: 0px;
}

.bg-cyan {
    background-color: #254B6E;
    border: 0px solid #254B6E;
    color: #f0d81b;
}

a, li {
    text-decoration: none;
    color: #ffffff;
}
.text-small a{
font-size: 11px;
text-align: center;
}


.container {
    margin-top: 5px;
    max-width: 1020px;
    height: auto;
}
p,  .container a {
    color: #254B6E;
}
.container a:hover {
    color: #254B6E;
    font-weight: bold;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* optionaler Abstand zwischen den Elementen */
}

.row > div {

  width: 490px;
  
  box-sizing: border-box;
}
.row > div img {

  width: 490px;
  
  box-sizing: border-box;
}

span.blau {
    background-color: #254B6E;
    color: #ffffff;
    border-radius: 4px;
    border: 0.01em solid #f0d81b;
}

img {
    padding: 4px;
    margin: 10px;
    border-radius: 4px;
    border: 0.01em solid #254B6E;
     
     box-shadow: 4px 4px 6px rgb(36, 74, 111,0.25);
}

img.right, img.place-right {
    float: right;
    z-index: 2000;
    margin: 0px;
    margin-left: 40px;
    margin-bottom: 10px;
    background-color: #ffffff;
    
   
}

img.left, img.place-left {
    float: left;
    z-index: 2000;
    margin-right: 40px;
    background-color: #ffffff;
}

table.timexpress-pricing {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    color: black;
}

table.timexpress-pricing th {
    background-color: #254B6E;
    color: #f0d81b;
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
}

table.timexpress-pricing td {
    padding: 12px;
    border: 1px solid #ccc;
    vertical-align: super;
}

table.timexpress-pricing tbody tr:nth-child(even) {
    background-color: #eee;
}

table.timexpress-pricing tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
