body {
    background: #22242A;
    font-family: 'Varela Round', sans-serif;
}

span {
    color: #fff;
    font-size: 13px;
    text-align: center;
}

.box-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
}

.box {
    width: 200px;
    height: 150px;
    background-color: #07D7EF;
    color: white;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.box:hover {
    transform: scale(1.1);
}

.icon-button {
    font-size: 24px;
    margin-bottom: 10px;
    background-color: #07D7EF;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.icon-button:hover {
    transform: scale(1.1);
    background-color: #0BB9D4;
}

.tabs-container {
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
}

.error-message {
    color: red;
    margin-top: 10px;
}

.tab-content {
    display: none;
}

.active-tab{
    display: block;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #07D7EF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* PLZ*/
.input-container {
    margin: 20px auto;
}

.zipcode-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #323741;
    border-radius: 5px;
    font-size: 16px;
    background-color: #323741;
    color: #fff;
}

.suggestions {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    display: none;
    position: absolute;
    width: 100%;
}

.suggestion-item {
    padding: 5px;
    cursor: pointer;
    background-color: #323741;
    color: white;
    display: flex;
    align-items: center;
    width: 100%;
}


.suggestion-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    fill: white;
}

.suggestion-item:hover {
    background-color: #1e1e32;
}


/* Checkboxen */
.checkbox-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0 20px 0;
}

.checkbox-label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 20px;
    padding: 5px;
    background-color: #323741;
    margin-bottom: 5px;
    width: 100%;
    color: #fff;
}

.checkbox-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 2px solid #323741;
    border-radius: 50%;
    transition: background-color 0.3s;
    vertical-align: middle;
    margin-right: 10px;
}

.checkbox:checked + .checkbox-icon {
    background-color: #07D7EF;
    border-color: #07D7EF;
}

.checkbox {
    display: none;
}

#nextBtn {
    background-color: #07D7EF;
    font-size: 15px;
    padding: 10px;
    border: 0px;
    border-radius: 5px;
}