body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    font-size: 20pt;
    font-weight: bold;
    text-align: left;
    background-color: #BF0000;
    color: #ffffff;
    padding: 40px 0 40px 175px;
    margin: 0;
    background-image: url('https://dl.ccb-online.de/informatik/HTML-Applets/Logo.svg');
    background-repeat: no-repeat;
    background-position: 40px center;
    background-size: contain;
    width: 100%;
    box-sizing: border-box;
}

.layout3 {
    padding-top: 20px;
    margin-top: 20px;
    max-width: 800px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.layout3 img {
    margin-right: 10px; /* Abstand zwischen Bild und Suche */
    margin-top: 10px; /* Abstand zwischen Bild und Suche */
}

.gcse-search {
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    background-color: #f0f0f0;
    border: none;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.gsc-search-button-v2:hover, .gsc-search-button-v2:focus:hover, .gsc-search-button-v2:not(:focus):hover {
    background-color: #800000;
}

select {
    margin-right: 10px;
    padding: 10px;
    height: min-content;
}
.range_container {
    display: flex;
    flex-direction: column;
    width: 300px;
}

.slider_header {
    text-align: center;
    margin: 2px;
}

.sliders_control {
    position: relative;
    min-height: 16px;
}

.form_control {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #635a5a;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;  
}

input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type="number"] {
    color: #8a8383;
    width: 50px;
    height: 17px;
    font-size: 16px;
    border: none;
}

input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {  
    opacity: 1;
}

input[type="range"] {
    -webkit-appearance: none; 
    appearance: none;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: #C6C6C6;
    pointer-events: none;
}

#fromSlider {
    height: 0;
    z-index: 1;
}

#results {
    margin-top: 20px;
}
.entry {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}