body {
    font-family: Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #f5fafd;
}

.finanzamt-finder {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

h1 {
    color: white;
    background-color: #03a9f4;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.search-form input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 30%;
}

.search-form button {
    padding: 10px 20px;
    background-color: #03a9f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #003366;
}

.error-message {
    text-align: center;
    color: white;
    background-color: #cc0000;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.no-results {
    text-align: center;
    color: #cc0000;
    font-weight: bold;
    padding: 20px;
    border: 1px dashed #cc0000;
    border-radius: 4pt;
}

/* Accordion Styles */
.accordion-item {
    border: 1px solid #003366;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    background-color: white;
    color: black;
    padding: 12px 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #e0e0e0;
}

.accordion-content {
    display: none;
    padding: 15px;
    border-top: 1px solid #ccc;
    background-color: #fafcff;
}

.accordion-content.active {
    display: block;
}

.section-header {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #004d99;
    color: #004d99;
}

.fa-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.fa-table th,
.fa-table td {
    padding: 8px;
    text-align: left;
}

.fa-table.details th {
    background-color: #e6f0ff;
    color: #004d99;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}

.fa-table.details td {
    vertical-align: top;
    border-bottom: 1px dotted #eee;
}

.streets-list {
    list-style-type: disc;
    margin-left: 20px;
    color: #333;
}

.streets-title {
    color: #004d99;
    font-weight: bold;
    margin-top: 10px;
    border-bottom: 2px solid #004d99;
}