:root {
--bug-green:        #009036;
--bug-green-dark:   #006633;
--bug-blue:         #003064;
--bug-text:         #212326;
--bug-text-light:   #555;
--bug-border:       #e0e0e0;
--bug-bg-light:     #fafafa;
--bug-bg-hover:     #f5f9f6;
--bug-radius:       4px;
}
.bug-schulsuche {
font-family: 'Open Sans', Arial, sans-serif;
color: var(--bug-text);
max-width: 100%;
} .bug-search-form {
margin-bottom: 28px;
}
.bug-search-fields {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
gap: 16px;
margin-bottom: 16px;
}
.bug-field label {
display: block;
font-size: 0.83rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
color: var(--bug-text-light);
margin-bottom: 5px;
}
.bug-field input[type="text"],
.bug-field select {
width: 100%;
padding: 9px 12px;
border: 1px solid #c8cfd8;
border-radius: var(--bug-radius);
font-family: inherit;
font-size: 0.95rem;
color: var(--bug-text);
background: #fff;
box-sizing: border-box;
transition: border-color .15s, box-shadow .15s;
appearance: none;
-webkit-appearance: none;
}
.bug-field select {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 10px center;
padding-right: 30px;
}
.bug-field input[type="text"]:focus,
.bug-field select:focus {
outline: none;
border-color: var(--bug-green);
box-shadow: 0 0 0 2px rgba(0,144,54,.18);
}
.bug-search-actions {
display: flex;
gap: 10px;
align-items: center;
}
.bug-btn {
display: inline-block;
padding: 10px 26px;
border: none;
border-radius: var(--bug-radius);
font-family: inherit;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: background .15s;
line-height: 1.4;
}
.bug-btn-primary {
background: var(--bug-green);
color: #fff;
}
.bug-btn-primary:hover {
background: var(--bug-green-dark);
}
.bug-btn-secondary {
background: transparent;
color: var(--bug-green-dark);
border: 1px solid var(--bug-green-dark);
}
.bug-btn-secondary:hover {
background: var(--bug-bg-hover);
} .bug-map {
width: 100%;
height: 480px;
border-radius: var(--bug-radius);
border: 1px solid var(--bug-border);
margin-bottom: 28px;
z-index: 1;
} .bug-results-header {
font-size: 0.9rem;
color: var(--bug-text-light);
margin-bottom: 10px;
}
.bug-results-table {
width: 100%;
border-collapse: collapse;
font-size: 0.95rem;
line-height: 1.5;
}
.bug-results-table thead {
background-color: var(--bug-green-dark);
color: #fff;
}
.bug-results-table th {
padding: 0.7rem 1rem;
text-align: left;
font-weight: 600;
white-space: nowrap;
}
.bug-results-table td {
padding: 0.7rem 1rem;
border-bottom: 1px solid var(--bug-border);
vertical-align: middle;
}
.bug-results-table tbody tr:nth-child(even) td {
background-color: var(--bug-bg-light);
}
.bug-results-table tbody tr:hover td {
background-color: var(--bug-bg-hover);
cursor: pointer;
}
.bug-result-link {
background: none;
border: none;
padding: 0;
color: var(--bug-green-dark);
font-weight: 600;
font-family: inherit;
font-size: inherit;
cursor: pointer;
text-align: left;
text-decoration: none;
}
.bug-result-link:hover {
text-decoration: underline;
}
.bug-no-results {
padding: 2rem;
text-align: center;
color: var(--bug-text-light);
font-style: italic;
background: var(--bug-bg-light);
border-radius: var(--bug-radius);
} .bug-modal {
position: fixed;
inset: 0;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
}
.bug-modal[hidden] {
display: none;
}
.bug-modal-backdrop {
position: absolute;
inset: 0;
background: rgba(0,0,0,.55);
}
.bug-modal-content {
position: relative;
z-index: 1;
background: #fff;
border-radius: 6px;
width: min(780px, 95vw);
max-height: 90vh;
overflow-y: auto;
padding: 32px;
box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.bug-modal-loading {
text-align: center;
padding: 40px;
color: var(--bug-text-light);
}
.bug-modal-close {
position: absolute;
top: 14px;
right: 16px;
background: none;
border: none;
font-size: 1.6rem;
line-height: 1;
cursor: pointer;
color: #888;
padding: 2px 6px;
border-radius: var(--bug-radius);
transition: background .12s;
}
.bug-modal-close:hover {
background: #f0f0f0;
color: #000;
} .bug-detail-title {
font-size: 1.4rem;
color: var(--bug-blue);
margin: 0 36px 6px 0;
line-height: 1.3;
}
.bug-detail-badge {
display: inline-block;
background: var(--bug-green);
color: #fff;
font-size: 0.78rem;
font-weight: 600;
padding: 3px 12px;
border-radius: 20px;
margin-bottom: 22px;
letter-spacing: .03em;
}
.bug-detail-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 22px;
}
.bug-detail-section h3 {
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--bug-green-dark);
margin: 0 0 8px;
padding-bottom: 5px;
border-bottom: 2px solid var(--bug-green);
}
.bug-detail-section p {
margin: 0 0 6px;
font-size: 0.92rem;
color: var(--bug-text);
}
.bug-detail-section a {
color: var(--bug-green-dark);
word-break: break-all;
}
.bug-detail-section a:hover {
text-decoration: underline;
}
.bug-detail-map {
width: 100%;
height: 220px;
border-radius: var(--bug-radius);
border: 1px solid var(--bug-border);
} .bug-popup-link {
background: none;
border: none;
color: var(--bug-green-dark);
cursor: pointer;
padding: 0;
font-size: 0.9rem;
font-family: inherit;
text-decoration: underline;
} @media (max-width: 700px) {
.bug-search-fields {
grid-template-columns: 1fr;
}
.bug-map {
height: 320px;
}
.bug-results-table thead {
display: none;
}
.bug-results-table,
.bug-results-table tbody,
.bug-results-table tr,
.bug-results-table td {
display: block;
width: 100%;
}
.bug-results-table tr {
margin-bottom: 0.75rem;
border: 1px solid var(--bug-border);
border-radius: var(--bug-radius);
background: #fff;
}
.bug-results-table td {
border-bottom: none;
padding: 0.4rem 0.75rem;
}
.bug-results-table td::before {
content: attr(data-label) ': ';
font-weight: 600;
color: var(--bug-green-dark);
}
.bug-results-table td:first-child::before {
content: none;
}
.bug-modal-content {
padding: 20px;
}
.bug-detail-grid {
grid-template-columns: 1fr;
}
} .bug-statistik {
font-family: 'Open Sans', Arial, sans-serif;
margin: 1.5rem 0;
}
.bug-statistik-table-wrap {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.bug-statistik-table {
width: 100%;
border-collapse: collapse;
font-size: 0.92rem;
line-height: 1.4;
}
.bug-statistik-table thead {
background-color: var(--bug-green-dark);
color: #fff;
}
.bug-statistik-table thead th {
padding: 0.65rem 1rem;
text-align: center;
font-weight: 600;
white-space: nowrap;
}
.bug-statistik-table thead th.bug-stat-col-label {
text-align: left;
}
.bug-statistik-table tbody th,
.bug-statistik-table tbody td {
padding: 0.55rem 1rem;
border-bottom: 1px solid var(--bug-border);
}
.bug-statistik-table tbody th {
text-align: left;
font-weight: 600;
color: var(--bug-text);
white-space: nowrap;
}
.bug-statistik-table tbody td {
text-align: center;
color: var(--bug-text);
}
.bug-statistik-table tbody tr:nth-child(even) td,
.bug-statistik-table tbody tr:nth-child(even) th {
background-color: var(--bug-bg-light);
}
.bug-statistik-table tbody tr:hover td,
.bug-statistik-table tbody tr:hover th {
background-color: var(--bug-bg-hover);
}
.bug-statistik-table tfoot tr.bug-stat-total th,
.bug-statistik-table tfoot tr.bug-stat-total td {
padding: 0.65rem 1rem;
font-weight: 700;
background-color: #e8f4ec;
border-top: 2px solid var(--bug-green);
text-align: center;
color: var(--bug-text);
}
.bug-statistik-table tfoot tr.bug-stat-total th {
text-align: left;
color: var(--bug-green-dark);
} .bug-statistik-table .bug-stat-sum,
.bug-statistik-table .bug-stat-col-sum {
font-weight: 700;
background-color: #f0f7f2;
border-left: 2px solid var(--bug-green);
border-right: 1px solid #c8dfd0;
}
.bug-statistik-meta {
font-size: 0.8rem;
color: var(--bug-text-light);
margin-top: 8px;
}
.bug-statistik-meta a {
color: var(--bug-green-dark);
}
.bug-stats-error {
color: #c00;
padding: 12px;
background: #fff0f0;
border-radius: var(--bug-radius);
border: 1px solid #fcc;
}.form-locked-message{color:var(--wpforms-label-color)}.angebote-tabelle-wrapper {
margin: 2rem 0;
}
.angebote-count {
margin-bottom: 1rem;
color: #555;
}
.angebote-tabelle {
width: 100%;
border-collapse: collapse;
font-size: 0.95rem;
line-height: 1.5;
}
.angebote-tabelle thead {
background-color: #006633; color: #fff;
}
.angebote-tabelle th {
padding: 0.75rem 1rem;
text-align: left;
font-weight: 600;
white-space: nowrap;
}
.angebote-tabelle td {
padding: 0.75rem 1rem;
border-bottom: 1px solid #e0e0e0;
vertical-align: top;
}
.angebote-tabelle tbody tr:hover {
background-color: #f5f9f6;
}
.angebote-tabelle tbody tr:nth-child(even) {
background-color: #fafafa;
}
.angebote-tabelle a {
color: #006633;
text-decoration: none;
font-weight: 600;
}
.angebote-tabelle a:hover {
text-decoration: underline;
} .col-angebot    { width: 25%; }
.col-anbieter   { width: 20%; }
.col-schulstufe { width: 18%; }
.col-personenkreis { width: 18%; }
.col-bezug      { width: 19%; } .angebote-keine {
padding: 2rem;
text-align: center;
color: #666;
font-style: italic;
}
.ua-gallery {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
}
.ua-gallery img {
max-width: 200px !important;
height: auto;
}
.facetwp-label.screen-reader-text {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
} @media screen and (max-width: 768px) {
.angebote-tabelle thead {
display: none;
}
.angebote-tabelle,
.angebote-tabelle tbody,
.angebote-tabelle tr,
.angebote-tabelle td {
display: block;
width: 100%;
}
.angebote-tabelle tr {
margin-bottom: 1rem;
border: 1px solid #e0e0e0;
border-radius: 4px;
padding: 0.5rem;
background: #fff;
}
.angebote-tabelle td {
padding: 0.4rem 0.75rem;
border-bottom: none;
text-align: left;
}
.angebote-tabelle td::before {
content: attr(data-label) ": ";
font-weight: 600;
color: #006633;
}
.angebote-tabelle td.col-angebot::before {
content: none;
}
.angebote-tabelle td.col-angebot {
font-size: 1.1rem;
padding-bottom: 0.25rem;
border-bottom: 1px solid #e0e0e0;
margin-bottom: 0.25rem;
}
}div.tnp-subscription,
form.tnp-subscription, form.tnp-profile {
display: block;
margin: 1em auto;
max-width: 500px;
width: 100%;
}
div.tnp-profile {
display: block;
margin: 1em 0;
max-width: 500px; } .tnp-subscription div.tnp-field,
.tnp-profile div.tnp-field
{
margin-bottom: .7em;
border: 0;
padding: 0;
}
.tnp-subscription label,
.tnp-profile label
{
display: block;
color: inherit;
font-weight: normal;
line-height: normal;
padding: 0;
margin: 0;
margin-bottom: .25em;
font-size: .9em;
}
.tnp-subscription .tnp-field-checkbox label,
.tnp-profile .tnp-field-checkbox label
{
display: inline-block;
}
.tnp-subscription input[type=text],
.tnp-subscription input[type=email],
.tnp-subscription input[type=submit],
.tnp-subscription select,
.tnp-subscription textarea,
.tnp-profile input[type=text],
.tnp-profile input[type=email],
.tnp-profile input[type=submit],
.tnp-profile select,
.tnp-profile textarea
{
width: 100%;
padding: .7em;
display: block;
border: 1px;
color: #444;
border-color: #ddd;
background-color: #f4f4f4;
background-image: none;
text-shadow: none;
font-size: 1em;
margin: 0;
line-height: normal;
box-sizing: border-box;
}
.tnp-subscription input[type=checkbox],
.tnp-widget input[type=radio],
.tnp-profile input[type=checkbox]
{ max-width: 1em;
display: inline-block;
margin-right: .5em;
} .tnp-subscription select option,
.tnp-profile select option
{
margin-right: .75em;
}
.tnp-subscription input.tnp-submit,
.tnp-profile input.tnp-submit,
.tnp-unsubscribe button.tnp-submit,
.tnp-reactivate button.tnp-submit
{
background-color: #444;
color: #fff;
width: auto;
height: auto;
margin: 0;
display: inline-block;
}
@media all and (max-width: 480px) {
.tnp-subscription input[type=submit],
.tnp-profile input[type=submit] {
width: 100%;
}
}
.tnp-widget {
width: 100%;
display: block;
box-sizing: border-box;
}
.tnp-widget .tnp-field {
margin-bottom: 10px;
border: 0;
padding: 0;
}
.tnp-widget label {
display: block;
color: inherit;
font-size: 14px;
}
.tnp-widget input[type=text], .tnp-widget input[type=email], .tnp-widget input[type=submit], .tnp-widget select {
width: 100%;
padding: 10px;
display: block;
border: 1px solid #ddd ;
border-color: #ddd;
background-color: #f4f4f4;
background-image: none;
text-shadow: none;
color: #444;
font-size: 14px;
line-height: normal;
box-sizing: border-box;
height: auto;
}
.tnp-widget input[type=checkbox], .tnp-widget input[type=radio] {
width: auto;
display: inline-block;
} .tnp-widget select option {
margin-right: 10px;
}
.tnp-widget input.tnp-submit {
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
margin: 0;
}
.tnp-field input[type="submit"] {
position: inherit;
}
.tnp-field label {
} .tnp-widget-minimal {
width: 100%;
}
.tnp-widget-minimal form {
margin: 0;
padding: 0;
border: 0;
}
.tnp-widget-minimal input.tnp-email {
width: 100%;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px solid #ddd;
background-color: #f4f4f4;
color: #444;
font-size: 14px;
}
.tnp-widget-minimal input.tnp-submit {
width: 100%;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px;
border-color: #ddd;
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
font-size: 14px;
line-height: normal;
border-radius: 0px;
height: auto;
margin: 0;
} .tnp-subscription-minimal {
width: 100%;
box-sizing: border-box;
margin: 10px 0;
}
.tnp-subscription-minimal form {
width: auto;
margin: 0;
padding: 0;
border: 0;
white-space: nowrap;
}
.tnp-subscription-minimal input.tnp-email,
.tnp-subscription-minimal input.tnp-name
{
width: 70%;
max-width: 300px;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px solid #ddd;
background-color: #f4f4f4;
color: #444;
font-size: 14px;
line-height: 20px;
border-radius: 0px;
margin-right: 10px;
}
.tnp-subscription-minimal.with-name input.tnp-email,
.tnp-subscription-minimal.with-name input.tnp-name
{
width: 31%;
}
.tnp-subscription-minimal .tnp-privacy-field {
margin-top: 10px;
} .tnp-subscription-minimal input.tnp-submit {
width: 29%;
box-sizing: border-box;
display: inline-block;
padding: 10px;
border: 1px;
border-color: #ddd;
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
font-size: 14px;
line-height: 20px;
border-radius: 0px;
margin: 0;
}
.tnp-subscription-posts {
margin-top: 2em;
margin-bottom: 2em;
padding: 2rem;
}
.tnp-subscription-posts .tnp-subscription {
max-width: auto;
margin: 0;
}
@media all and (max-width: 525px) {
.tnp-subscription-minimal.with-name input.tnp-email,
.tnp-subscription-minimal.with-name input.tnp-name,
.tnp-subscription-minimal input.tnp-submit
{
width: 100%;
max-width: 100%;
margin: 0;
display: block;
margin-bottom: .5rem;
}
} .tnp-button-form button.tnp-submit {
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px;
border-color: #ddd;
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
font-size: 14px;
line-height: normal;
border-radius: 0px;
height: auto;
margin: 0;
} .tnp-comments {
clear: both;
margin-top: 15px;
margin-bottom: 15px;
}
.tnp-comments label {
display: block;
}
.tnp-comments input[type=checkbox] {
display: inline-block;
width: auto!important;
} .tnp-lock {
clear: both;
display: block;
box-sizing: border-box;
box-shadow: none;
margin: 20px;
padding: 15px;
background-color: #fff;
border: 1px solid #ddd;
}
.tnp-nl-checkout {
margin-bottom: 1em;
}