.error {
    color: red;
    display: none;
}

h1 {
    text-align: center;
    color: #333;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    display: block;
    color: #555;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.checkbox-group {
    margin-bottom: 20px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

.modal {
    background-color: rgba(0, 0, 0, 0.4);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.radio-group {
    margin-bottom: 15px;
}

.radio-group label {
    margin-right: 15px;
}

iframe {
    margin: 10px 0;
}

#address-modal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    color: #666;
    cursor: text;
}

#address-modal:focus {
    outline: none;
    background-color: #e0e0e0;
}

.location-icon {
    cursor: pointer;
    margin-left: 10px;
}

.address-container {
    display: flex;
    align-items: center;
}

#address-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

#use-current-location {
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 15px;
}

#use-current-location:hover {
    color: #0056b3;
}