* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #e5f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

h1 {
    margin-bottom: 20px;
    color: #007bff;
    font-family: 'Dosis', sans-serif;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

select, input[type="date"], button, .download-button {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

select, input[type="date"], button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f8f9fa;
    color: #495057;
    font-family: 'Open Sans', sans-serif; /* Schriftart für Input und Select */
}

input[type="date"] {
    font-family: 'Open Sans', sans-serif; /* Speziell für die Datepicker */
}

button, .download-button {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

button:hover, .download-button:hover {
    background-color: #0069d9;
}

.download-button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
    color: #999;
}

.date-range {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.date-range input[type="date"] {
    width: 100%;
}