body {
    background-color: #f0f8ff;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.jumbotron {
    background-color: #ffd700;
    color: #4b0082;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 30px;
}

.panel {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.panel-heading {
    background-color: #98fb98;
    padding: 50px;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 30px;
}

.slotwrapper {
    overflow: hidden;
    display: inline-block;
    border: none;
    height: 125px; /* Erhöht von 100px auf 150px */
    width: 100%; /* Nutzt die volle Breite des Containers */
    max-width: 1000px; /* Begrenzt die maximale Breite */
    margin: 0 auto; /* Zentriert den Wrapper */
}

.btn-lg {
    font-size: 20px;
    border-radius: 25px;
    margin: 10px;
}

.btn-primary {
    background-color: #4169e1;
}

.btn-success {
    background-color: #32cd32;
}

.btn-custom {
  background-color: #FF0000;
  border-color: #F4FA58;
  color: #0000FF;
}

.btn-custom:hover {
  background-color: #00FF40;
  border-color: #FFBF00;
}

.btn-custom-start {
    background-color: #01DF01;
    border-color: #1C1C1C;
    color: #F5F6CE;
}

.btn-custom-stop {
    background-color: #DF0101;
    border-color: #1C1C1C;
    color: #F5F6CE;
}

.btn-custom-start:hover, .btn-custom-stop:hover {
    background-color: #F7D358;
    border-color: #1C1C1C;
}

.slotwrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    float: left;
    width: 16.66%; /* 100% / 6 für gleichmäßige Verteilung */
    height: 150px; /* Angepasst an die neue Höhe des Wrappers */
    font-size: 0; /* Entfernt unerwünschte Abstände zwischen inline-block Elementen */
    text-align: center;
}

.slotwrapper ul li {
    height: 100%;
}

.slotwrapper ul li img {
    vertical-align: top;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.panel-body > div:last-child {
    margin-top: 30px;
}
.panel-body {
    padding-bottom: 30px;
}
.panel-warning {
    margin-bottom: 60px;
}
