/* Grundlayout */
body {
    background-color: #f4f7f6;
    padding-top: 20px;
    font-family: sans-serif;
}

.card {
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Buttons & Map */
.btn-huge {
    padding: 20px;
    font-size: 1.4rem;
    width: 100%;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s;
    border: none;
}

#map {
    height: 250px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    z-index: 1;
}

/* Statistik Tabelle */
.pivot-table {
    font-size: 0.8rem;
    background: white;
    width: 100%;
    margin-bottom: 0;
}

.pivot-table th {
    background: #f8f9fa;
    padding: 10px 5px;
    border-bottom: 2px solid #dee2e6;
}

.pivot-table td {
    padding: 8px 5px;
    border-bottom: 1px solid #eee;
}

.val-zero {
    color: #ccc;
}

/* Suche & Info */
.search-container {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

#info-text {
    font-size: 0.75rem;
    color: #555;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

/* Detail Box */
#detail-box {
    background: #fff;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #1a73e8;
}

/* Container für die Windrose auf der Karte */
.wind-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

/* Die Windnadel (ein kleiner Pfeil) */
#wind-arrow {
    font-size: 20px;
    transition: transform 1s ease-in-out;
    line-height: 1;
}

/* Text für die Geschwindigkeit */
#wind-speed-label {
    font-size: 0.65rem;
    font-weight: bold;
    margin-top: -2px;
}