/* _content/application/Components/DragDropDataGrid.razor.rz.scp.css */
.dragdrop-grid-container[b-hwwmfdcszu] {
    display: flex;
    flex-direction: column;
    height: 100%; /* Container füllt verfügbaren Raum */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.dragdrop-body[b-hwwmfdcszu] {
    flex: 1 1 auto; /* Body nimmt den Rest des Containers ein */
    overflow-y: auto; /* Scrollbar bei vielen Einträgen */
    padding-bottom: 20px; /* Abstand unten */
    box-sizing: border-box;
}

    .dragdrop-body table[b-hwwmfdcszu] {
        width: 100%;
        border-collapse: collapse;
    }

tr[b-hwwmfdcszu] {
    cursor: grab;
}

    tr:active[b-hwwmfdcszu] {
        cursor: grabbing;
    }

.drag-over[b-hwwmfdcszu] {
    border-top: 3px solid #007bff;
}
/* _content/application/Components/Layout/DateTimeDisplay.razor.rz.scp.css */
.datetime-wrapper[b-r06p9kk7hn] {
    position: absolute;
    left: 0;
    right: 4.5rem;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none !important;
    z-index: 1;
}

.datetime-display[b-r06p9kk7hn] {
    color: white;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.datetime-time[b-r06p9kk7hn] {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: #ffffff;
    margin: 0;
    font-variant-numeric: tabular-nums;
}

.datetime-date[b-r06p9kk7hn] {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.9;
    margin-top: 0.2rem;
    white-space: nowrap;
    color: #d7d7d7;
    margin: 0;
}
/* _content/application/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ih248fz2ld] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-ih248fz2ld] {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

/* Mobile: Verhindere vertikale Scrollleiste am Body, erlaube nur im main (Samsung A34 etc.) */
@media (max-width: 768px) {
    body[b-ih248fz2ld] {
        overflow-y: hidden !important;
        overflow-x: hidden !important;
        position: fixed;
        width: 100%;
        height: 100vh;
        -webkit-overflow-scrolling: touch;
    }

    .page[b-ih248fz2ld] {
        height: 100vh;
    }
    
    main[b-ih248fz2ld] {
        overflow-y: auto;
        overflow-x: hidden;
        flex: 1;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
        min-width: 0;
    }
    
    main[b-ih248fz2ld]::-webkit-scrollbar {
        width: 8px;
    }
    
    main[b-ih248fz2ld]::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    main[b-ih248fz2ld]::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 4px;
    }
    
    main[b-ih248fz2ld]::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
    
    article.content[b-ih248fz2ld] {
        overflow-y: visible;
        overflow-x: hidden;
        padding-bottom: 1rem;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Mobile: Kachel-Seiten (Trachtkalender, Einnahmen, Ausgaben, Belege, Inventar) – ohne :has() für ältere Mobilbrowser */
@media (max-width: 768px) {
    main.kachel-active[b-ih248fz2ld] {
        overflow: hidden !important;
        display: flex;
        flex-direction: column;
    }

    main.kachel-active article.content[b-ih248fz2ld] {
        flex: 1;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 0.5rem 0.75rem calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
    }

    main.kachel-active article.content > .kachel-page[b-ih248fz2ld] {
        flex: 1;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
}

.sidebar[b-ih248fz2ld] {
    background-image: linear-gradient(180deg, var(--color-sidebar-gradient-start) 0%, var(--color-sidebar-gradient-end) 70%);
}

.top-row[b-ih248fz2ld] {
    background-color: var(--color-top-row-bg);
    border-bottom: 1px solid var(--color-top-row-border);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ih248fz2ld]  a, .top-row[b-ih248fz2ld]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ih248fz2ld]  a:hover, .top-row[b-ih248fz2ld]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ih248fz2ld]  .logout-button {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        font-weight: 500;
        border-radius: 0.375rem;
        transition: all 0.2s ease-in-out;
        border: 1px solid var(--color-logout);
        color: var(--color-logout);
        background-color: transparent;
        cursor: pointer;
    }

    .top-row[b-ih248fz2ld]  .logout-button:hover {
        background-color: var(--color-logout);
        color: var(--color-logout-contrast);
        transform: translateY(-1px);
        box-shadow: 0 2px 4px var(--color-logout-shadow-hover);
    }

    .top-row[b-ih248fz2ld]  .logout-button:active {
        transform: translateY(0);
        box-shadow: 0 1px 2px var(--color-logout-shadow-active);
    }

    .top-row[b-ih248fz2ld]  .logout-button:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem var(--color-logout-focus-ring);
    }

    .top-row[b-ih248fz2ld]  .user-name {
        color: var(--color-user-name);
        font-weight: 500;
        margin-right: 1rem;
    }

    .top-row[b-ih248fz2ld]  .style-shortcut-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 0.375rem;
        color: var(--color-style-shortcut-fg);
        background: var(--color-style-shortcut-bg);
        border: 1px solid var(--color-style-shortcut-border);
        text-decoration: none;
        transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    }

    .top-row[b-ih248fz2ld]  .style-shortcut-link:hover {
        background: var(--color-style-shortcut-bg-hover);
        border-color: var(--color-style-shortcut-border-hover);
        transform: translateY(-1px);
        text-decoration: none;
    }

    .top-row[b-ih248fz2ld]  .style-shortcut-link .bi {
        margin-right: 0;
        top: 0;
        width: auto;
        height: auto;
    }

    .top-row[b-ih248fz2ld]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    /* UserDisplay + LogoutButton ausblenden – Abmelden ist im Nav-Header neben dem Menü */
    main .top-row[b-ih248fz2ld] {
        display: none !important;
    }

    .top-row[b-ih248fz2ld] {
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .top-row[b-ih248fz2ld]  a, .top-row[b-ih248fz2ld]  .btn-link {
        margin-left: 0;
    }

    /* UserDisplay + LogoutButton nebeneinander halten */
    .top-row .d-flex[b-ih248fz2ld] {
        flex-wrap: nowrap !important;
    }
}

@media (min-width: 641px) {
    .page[b-ih248fz2ld] {
        flex-direction: row;
    }

    .sidebar[b-ih248fz2ld] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ih248fz2ld] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ih248fz2ld]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ih248fz2ld], article[b-ih248fz2ld] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ih248fz2ld] {
    color-scheme: light only;
    background: var(--color-error-ui-bg);
    bottom: 0;
    box-shadow: 0 -1px 2px var(--color-error-ui-shadow);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ih248fz2ld] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/application/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ggy9w195y4] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.nav-header-actions[b-ggy9w195y4] {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-toggler-label[b-ggy9w195y4] {
  appearance: none;
  cursor: pointer;
  width: 3.5rem;
  height: 2.5rem;
  color: white;
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
    no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  pointer-events: all !important;
  touch-action: manipulation;
  margin: 0;
  padding: 0;
  display: block;
}

#navbar-toggler-checkbox:checked ~ .top-row .navbar-toggler-label[b-ggy9w195y4] {
  background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ggy9w195y4] {
  height: 3.5rem;
  min-height: 3.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  overflow: visible;
  position: relative;
}

.navbar-brand[b-ggy9w195y4] {
  font-size: 1.1rem;
}

.bi[b-ggy9w195y4] {
  display: inline-block;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  top: -1px;
  background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-weather-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='6' r='3' fill='%23FFD700'/%3E%3Cpath d='M8 3c-1.5 0-2.5 1-2.5 2.5 0 .5.2 1 .5 1.5L8 8l2-1c.3-.5.5-1 .5-1.5C10.5 4 9.5 3 8 3z' fill='%23FFA500' opacity='0.7'/%3E%3Cellipse cx='5' cy='9' rx='2' ry='1.5' fill='white' opacity='0.8'/%3E%3Cellipse cx='11' cy='9' rx='2' ry='1.5' fill='white' opacity='0.8'/%3E%3Cellipse cx='8' cy='10' rx='2.5' ry='1.5' fill='white' opacity='0.9'/%3E%3C/svg%3E");
}

.bi-calendar-event-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-event' viewBox='0 0 16 16'%3E%3Cpath d='M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-protocol-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M5 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 4m0 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 8m0 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5'/%3E%3Cpath d='M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z'/%3E%3Ccircle cx='3.5' cy='4' r='.5' fill='%23ffc107'/%3E%3Ccircle cx='3.5' cy='8' r='.5' fill='%23dc3545'/%3E%3Ccircle cx='3.5' cy='12' r='.5' fill='%2328a745'/%3E%3C/svg%3E");
}

.bi-gear-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.292-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.292c.415.764-.42 1.6-1.185 1.184l-.292-.159a1.873 1.873 0 0 0-2.692 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.693-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.292A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z'/%3E%3C/svg%3E");
}

.bi-time-tracking-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='9' r='5' fill='none' stroke='%23fff' stroke-width='1.5'/%3E%3Crect x='6.2' y='1' width='3.6' height='1.6' rx='0.6' fill='%23fff'/%3E%3Cpath d='M8 9V6.2l2.4 1.4' stroke='%234dd0e1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* Imkerei: Bienenbeute (gestapelte Beutenkörper mit Dach) */
.bi-bee-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 2.5c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v1.5c0 .3-.2.5-.5.5h-7c-.3 0-.5-.2-.5-.5V2.5z' fill='%23fff' opacity='0.95'/%3E%3Cpath d='M3.5 4h9c.3 0 .5.2.5.5v2.5c0 .3-.2.5-.5.5h-9c-.3 0-.5-.2-.5-.5V4.5c0-.3.2-.5.5-.5z' fill='%23fff'/%3E%3Cpath d='M3.5 7h9c.3 0 .5.2.5.5v2.5c0 .3-.2.5-.5.5h-9c-.3 0-.5-.2-.5-.5V7.5c0-.3.2-.5.5-.5z' fill='%23fff' opacity='0.95'/%3E%3Cpath d='M3.5 10h9c.3 0 .5.2.5.5v2.5c0 .3-.2.5-.5.5h-9c-.3 0-.5-.2-.5-.5v-2.5c0-.3.2-.5.5-.5z' fill='%23fff' opacity='0.9'/%3E%3Cpath d='M5 3.5h6v.8H5v-.8z' fill='%23FFD700'/%3E%3Ccircle cx='8' cy='2.8' r='0.5' fill='%23FFD700'/%3E%3Cpath d='M6.5 5.2h3v.4h-3v-.4zm0 3.2h3v.4h-3v-.4zm0 3.2h3v.4h-3v-.4z' fill='%23d4a84b' opacity='0.8'/%3E%3C/svg%3E");
}

/* Trachtkalender: Gleiches Icon wie Übersicht Imkerei (bi-flower2) */
.bi-forage-calendar-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 16a4 4 0 0 0 4-4 4 4 0 0 0 0-8 4 4 0 0 0-8 0 4 4 0 1 0 0 8 4 4 0 0 0 4 4m3-12q0 .11-.03.247c-.544.241-1.091.638-1.598 1.084A3 3 0 0 0 8 5c-.494 0-.96.12-1.372.331-.507-.446-1.054-.843-1.597-1.084A1 1 0 0 1 5 4a3 3 0 0 1 6 0m-.812 6.052A3 3 0 0 0 11 8a3 3 0 0 0-.812-2.052c.215-.18.432-.346.647-.487C11.34 5.131 11.732 5 12 5a3 3 0 1 1 0 6c-.268 0-.66-.13-1.165-.461a7 7 0 0 1-.647-.487m-3.56.617a3 3 0 0 0 2.744 0c.507.446 1.054.842 1.598 1.084q.03.137.03.247a3 3 0 1 1-6 0q0-.11.03-.247c.544-.242 1.091-.638 1.598-1.084m-.816-4.721A3 3 0 0 0 5 8c0 .794.308 1.516.812 2.052a7 7 0 0 1-.647.487C4.66 10.869 4.268 11 4 11a3 3 0 0 1 0-6c.268 0 .66.13 1.165.461.215.141.432.306.647.487M8 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2'/%3E%3C/svg%3E");
}

.bi-currency-exchange-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 5a5 5 0 0 0 4.027 4.905 6.5 6.5 0 0 1 .544-2.073C3.695 7.536 3.132 6.864 3 5.91h-.5v-.426h.466V5.05q-.001-.07.004-.135H2.5v-.427h.511C3.236 3.24 4.213 2.5 5.681 2.5c.316 0 .59.031.819.085v.733a3.5 3.5 0 0 0-.815-.082c-.919 0-1.538.466-1.734 1.252h1.917v.427h-1.98q-.004.07-.003.147v.422h1.983v.427H3.93c.118.602.468 1.03 1.005 1.229a6.5 6.5 0 0 1 4.97-3.113A5.002 5.002 0 0 0 0 5m16 5.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0m-7.75 1.322c.069.835.746 1.485 1.964 1.562V14h.54v-.62c1.259-.086 1.996-.74 1.996-1.69 0-.865-.563-1.31-1.57-1.54l-.426-.1V8.374c.54.06.884.347.966.745h.948c-.07-.804-.779-1.433-1.914-1.502V7h-.54v.629c-1.076.103-1.808.732-1.808 1.622 0 .787.544 1.288 1.45 1.493l.358.085v1.78c-.554-.08-.92-.376-1.003-.787zm1.96-1.895c-.532-.12-.82-.364-.82-.732 0-.41.311-.719.824-.809v1.54h-.005zm.622 1.044c.645.145.943.38.943.796 0 .474-.37.8-1.02.86v-1.674z'/%3E%3C/svg%3E");
}

/* Einnahmen: gedämpftes Grün */
.bi-currency-exchange-green-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b9b6b' viewBox='0 0 16 16'%3E%3Cpath d='M0 5a5 5 0 0 0 4.027 4.905 6.5 6.5 0 0 1 .544-2.073C3.695 7.536 3.132 6.864 3 5.91h-.5v-.426h.466V5.05q-.001-.07.004-.135H2.5v-.427h.511C3.236 3.24 4.213 2.5 5.681 2.5c.316 0 .59.031.819.085v.733a3.5 3.5 0 0 0-.815-.082c-.919 0-1.538.466-1.734 1.252h1.917v.427h-1.98q-.004.07-.003.147v.422h1.983v.427H3.93c.118.602.468 1.03 1.005 1.229a6.5 6.5 0 0 1 4.97-3.113A5.002 5.002 0 0 0 0 5m16 5.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0m-7.75 1.322c.069.835.746 1.485 1.964 1.562V14h.54v-.62c1.259-.086 1.996-.74 1.996-1.69 0-.865-.563-1.31-1.57-1.54l-.426-.1V8.374c.54.06.884.347.966.745h.948c-.07-.804-.779-1.433-1.914-1.502V7h-.54v.629c-1.076.103-1.808.732-1.808 1.622 0 .787.544 1.288 1.45 1.493l.358.085v1.78c-.554-.08-.92-.376-1.003-.787zm1.96-1.895c-.532-.12-.82-.364-.82-.732 0-.41.311-.719.824-.809v1.54h-.005zm.622 1.044c.645.145.943.38.943.796 0 .474-.37.8-1.02.86v-1.674z'/%3E%3C/svg%3E");
}

/* Ausgaben: gedämpftes Rot */
.bi-currency-exchange-red-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b86b6b' viewBox='0 0 16 16'%3E%3Cpath d='M0 5a5 5 0 0 0 4.027 4.905 6.5 6.5 0 0 1 .544-2.073C3.695 7.536 3.132 6.864 3 5.91h-.5v-.426h.466V5.05q-.001-.07.004-.135H2.5v-.427h.511C3.236 3.24 4.213 2.5 5.681 2.5c.316 0 .59.031.819.085v.733a3.5 3.5 0 0 0-.815-.082c-.919 0-1.538.466-1.734 1.252h1.917v.427h-1.98q-.004.07-.003.147v.422h1.983v.427H3.93c.118.602.468 1.03 1.005 1.229a6.5 6.5 0 0 1 4.97-3.113A5.002 5.002 0 0 0 0 5m16 5.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0m-7.75 1.322c.069.835.746 1.485 1.964 1.562V14h.54v-.62c1.259-.086 1.996-.74 1.996-1.69 0-.865-.563-1.31-1.57-1.54l-.426-.1V8.374c.54.06.884.347.966.745h.948c-.07-.804-.779-1.433-1.914-1.502V7h-.54v.629c-1.076.103-1.808.732-1.808 1.622 0 .787.544 1.288 1.45 1.493l.358.085v1.78c-.554-.08-.92-.376-1.003-.787zm1.96-1.895c-.532-.12-.82-.364-.82-.732 0-.41.311-.719.824-.809v1.54h-.005zm.622 1.044c.645.145.943.38.943.796 0 .474-.37.8-1.02.86v-1.674z'/%3E%3C/svg%3E");
}

/* Belege: Gleiches Icon wie Übersicht Imkerei (bi-receipt) */
.bi-receipt-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.92.506a.5.5 0 0 1 .434.14L3 1.293l.646-.647a.5.5 0 0 1 .708 0L5 1.293l.646-.647a.5.5 0 0 1 .708 0L7 1.293l.646-.647a.5.5 0 0 1 .708 0L9 1.293l.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .801.13l.5 1A.5.5 0 0 1 15 2v12a.5.5 0 0 1-.053.224l-.5 1a.5.5 0 0 1-.8.13L13 14.707l-.646.647a.5.5 0 0 1-.708 0L11 14.707l-.646.647a.5.5 0 0 1-.708 0L9 14.707l-.646.647a.5.5 0 0 1-.708 0L7 14.707l-.646.647a.5.5 0 0 1-.708 0L5 14.707l-.646.647a.5.5 0 0 1-.708 0L3 14.707l-.646.647a.5.5 0 0 1-.801-.13l-.5-1A.5.5 0 0 1 1 14V2a.5.5 0 0 1 .053-.224l.5-1a.5.5 0 0 1 .367-.27m.217 1.338L2 2.118v11.764l.137.274.51-.51a.5.5 0 0 1 .707 0l.646.647.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.509.509.137-.274V2.118l-.137-.274-.51.51a.5.5 0 0 1-.707 0L12 1.707l-.646.647a.5.5 0 0 1-.708 0L10 1.707l-.646.647a.5.5 0 0 1-.708 0L8 1.707l-.646.647a.5.5 0 0 1-.708 0L6 1.707l-.646.647a.5.5 0 0 1-.708 0L4 1.707l-.646.647a.5.5 0 0 1-.708 0z'/%3E%3Cpath d='M3 4.5a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m8-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

.bi-person-contacts-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5 6s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zM11 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5m.5 2.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1zm2 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z'/%3E%3C/svg%3E");
}

/* Inventar: Paket-Icon (offizielles Bootstrap box-seam) */
.bi-box-seam-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l2.404.961L10.404 2zm3.564 1.426L5.596 5 8 5.961 14.154 3.5zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.63 13.09a1 1 0 0 1-.63-.928V3.5a.5.5 0 0 1 .314-.464z'/%3E%3C/svg%3E");
}

/* Bienenanalyse: Lupe + Krone */
.bi-bee-analysis-nav-menu[b-ggy9w195y4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M2 5.5 4.2 7l1.8-2L8 7l2-2 1.8 2L14 5.5l-.9 4.2H2.9z' fill='%23ffd166'/%3E%3Ccircle cx='6.5' cy='10' r='3' fill='none' stroke='white' stroke-width='1.4'/%3E%3Cpath d='m8.7 12.2 2.3 2.3' stroke='white' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nav-item[b-ggy9w195y4] {
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-ggy9w195y4] {
  padding-top: 1rem;
}

.nav-item:last-of-type[b-ggy9w195y4] {
  padding-bottom: 1rem;
}

.nav-item[b-ggy9w195y4]  .nav-link {
  color: #d7d7d7;
  background: none;
  border: none;
  border-radius: 4px;
  height: 3rem;
  display: flex;
  align-items: center;
  line-height: 3rem;
  width: 100%;
}

.nav-item[b-ggy9w195y4]  a.active {
  background-color: rgba(255, 255, 255, 0.37);
  color: white;
}

.nav-item[b-ggy9w195y4]  .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-scrollable[b-ggy9w195y4] {
  display: none;
}

#navbar-toggler-checkbox:checked ~ .nav-scrollable[b-ggy9w195y4] {
  display: flex;
}

/* Mobile: Abmelden-Icon im Nav-Header – gedämpftes Rot */
@media (max-width: 640.98px) {
  .nav-header-actions[b-ggy9w195y4]  .logout-button {
    padding: 0.4rem 0.5rem !important;
    border-color: rgba(184, 107, 107, 0.7) !important;
    color: #b86b6b !important;
    background: rgba(184, 107, 107, 0.15) !important;
    min-width: 2.5rem;
    height: 2.5rem;
  }

  .nav-header-actions[b-ggy9w195y4]  .logout-button:hover {
    background: rgba(184, 107, 107, 0.3) !important;
    border-color: #b86b6b !important;
    color: #c87a7a !important;
  }

  .nav-header-actions[b-ggy9w195y4]  .logout-button span.bi {
    font-size: 1.1rem;
    margin: 0;
    display: inline-block;
  }
}

/* Mobile: Slide-out overlay mit Backdrop */
@media (max-width: 640.98px) {
  .nav-backdrop[b-ggy9w195y4] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  #navbar-toggler-checkbox:checked ~ .nav-backdrop[b-ggy9w195y4] {
    display: block;
    opacity: 1;
  }

  .nav-scrollable[b-ggy9w195y4] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(280px, 85vw);
    max-width: 280px;
    z-index: 999;
    flex-direction: column;
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 3.5rem;
  }

  #navbar-toggler-checkbox:checked ~ .nav-scrollable[b-ggy9w195y4] {
    transform: translateX(0);
  }

  .nav-scrollable .nav[b-ggy9w195y4] {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 1rem));
  }
}

.nav[b-ggy9w195y4] {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.nav-item.mt-auto[b-ggy9w195y4] {
  margin-top: auto !important;
}

/* Mobile: mt-auto deaktivieren, damit Protokoll und Einstellungen sichtbar sind */
@media (max-width: 640.98px) {
  .nav-scrollable .nav-item.mt-auto[b-ggy9w195y4] {
    margin-top: 0 !important;
  }
}

.nav-group[b-ggy9w195y4] {
  position: relative;
}

.nav-group-toggle[b-ggy9w195y4] {
  cursor: pointer;
  justify-content: space-between;
}

.nav-arrow[b-ggy9w195y4] {
  margin-left: auto;
  transition: transform 0.2s ease;
  font-size: 0.7rem;
}

.nav-arrow.open[b-ggy9w195y4] {
  transform: rotate(180deg);
}

.nav-submenu[b-ggy9w195y4] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 1.5rem;
}

.nav-submenu.show[b-ggy9w195y4] {
  max-height: 300px;
}

.nav-submenu-item[b-ggy9w195y4] {
  padding: 0.15rem 0;
}

.nav-item[b-ggy9w195y4]  .nav-sublink {
  padding-left: 2.5rem !important;
  height: 2.5rem !important;
  font-size: 0.85rem;
  line-height: 2.5rem !important;
}

.nav-sublink .bi[b-ggy9w195y4] {
  margin-right: 0.5rem;
}

@media (min-width: 641px) {
  .navbar-toggler[b-ggy9w195y4] {
    display: none;
  }

  .navbar-toggler-label[b-ggy9w195y4] {
    display: none !important;
  }

  /* Abmelden nur auf Mobile im Nav-Header, auf Desktop in main.top-row */
  .nav-header-actions[b-ggy9w195y4] {
    display: none !important;
  }

  .nav-scrollable[b-ggy9w195y4] {
    /* Never collapse the sidebar for wide screens */
    display: flex;
    flex-direction: column;

    /* Allow sidebar to scroll for tall menus */
    height: calc(100vh - 3.5rem);
    overflow-y: auto;
  }

  .nav[b-ggy9w195y4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
}
/* _content/application/Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-541qr32v3j],
.components-reconnect-repeated-attempt-visible[b-541qr32v3j],
.components-reconnect-failed-visible[b-541qr32v3j],
.components-pause-visible[b-541qr32v3j],
.components-resume-failed-visible[b-541qr32v3j],
.components-rejoining-animation[b-541qr32v3j] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-541qr32v3j],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-541qr32v3j],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-541qr32v3j],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-541qr32v3j],
#components-reconnect-modal.components-reconnect-retrying[b-541qr32v3j],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-541qr32v3j],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-541qr32v3j],
#components-reconnect-modal.components-reconnect-failed[b-541qr32v3j],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-541qr32v3j] {
    display: block;
}


#components-reconnect-modal[b-541qr32v3j] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-541qr32v3j 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-541qr32v3j 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-541qr32v3j 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-541qr32v3j]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-541qr32v3j 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-541qr32v3j {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-541qr32v3j {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-541qr32v3j {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-541qr32v3j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-541qr32v3j] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-541qr32v3j] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-541qr32v3j] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-541qr32v3j] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-541qr32v3j] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-541qr32v3j] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-541qr32v3j 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-541qr32v3j] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-541qr32v3j {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* _content/application/Components/Pages/Agenda.razor.rz.scp.css */
/* Agenda: Kachel-Layout wie Einnahmen/Kontakte (Basis in app.css .kachel-page) */
.agenda-container .kachel-fixed-height[b-jt91err46r] {
    display: flex;
    flex-direction: column;
}

.agenda-container .kachel-table-scroll[b-jt91err46r] {
    flex: 1 1 0;
    min-height: 0;
}

/* Mobile: analog Trachtkalender/Kontakte – kompakte Schriftgrössen, Padding */
@media (max-width: 768px) {
    .agenda-container.kachel-page[b-jt91err46r] {
        padding: 0.5rem 0.5rem 0 !important;
    }

    .agenda-container .row.g-4[b-jt91err46r] {
        gap: 0.25rem !important;
    }

    .agenda-container .card-header[b-jt91err46r] {
        padding: 0.4rem 0.6rem;
    }

    .agenda-container .card-title[b-jt91err46r] {
        font-size: 1rem;
        margin-bottom: 0.05rem !important;
    }

    .agenda-container .card-body[b-jt91err46r] {
        padding: 0.5rem 0.6rem;
    }

    /* Tabellenzeilen: kompakter wie Trachtkalender */
    .agenda-container .kachel-table-scroll .table tbody tr[b-jt91err46r] {
        margin-bottom: 0.5rem;
    }

    .agenda-container .kachel-table-scroll .table tbody td[b-jt91err46r] {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }

    .agenda-container .kachel-table-scroll .table tbody td[b-jt91err46r]::before {
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Buttons im Header: kompakt */
    .agenda-container .card-header .btn-sm[b-jt91err46r] {
        padding: 0.35rem 0.5rem;
        font-size: 0.8rem;
    }

    /* Tabellen-Buttons: Touch-freundlich */
    .agenda-container .kachel-table-scroll .table .btn-sm[b-jt91err46r] {
        padding: 0.35rem 0.5rem;
        font-size: 0.8rem;
    }
}
/* _content/application/Components/Pages/Contact/Contact.razor.rz.scp.css */
/* Kontakte: Kachel-Layout wie Einnahmen/Ausgaben (Basis in app.css .kachel-page) */
.contact-container .kachel-fixed-height[b-uhufegcbze] {
    display: flex;
    flex-direction: column;
}

.contact-container .kachel-table-scroll[b-uhufegcbze] {
    flex: 1 1 0;
    min-height: 0;
}

/* Mobile: analog Trachtkalender – kompakte Schriftgrössen, Padding */
@media (max-width: 768px) {
    .contact-container.kachel-page[b-uhufegcbze] {
        padding: 0.5rem 0.5rem 0 !important;
    }

    .contact-container .row.g-4[b-uhufegcbze] {
        gap: 0.25rem !important;
    }

    .contact-container .card-header[b-uhufegcbze] {
        padding: 0.4rem 0.6rem;
    }

    .contact-container .card-title[b-uhufegcbze] {
        font-size: 1rem;
        margin-bottom: 0.05rem !important;
    }

    .contact-container .card-body[b-uhufegcbze] {
        padding: 0.5rem 0.6rem;
    }

    .contact-container .card-header input.form-control-sm[b-uhufegcbze] {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 0.85rem;
        padding: 0.35rem 0.5rem;
    }

    /* Tabellenzeilen: kompakter wie Trachtkalender */
    .contact-container .kachel-table-scroll .table tbody tr[b-uhufegcbze] {
        margin-bottom: 0.5rem;
    }

    .contact-container .kachel-table-scroll .table tbody td[b-uhufegcbze] {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }

    .contact-container .kachel-table-scroll .table tbody td[b-uhufegcbze]::before {
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* "X von Y Kontakten" – kleinere Schrift */
    .contact-container .mb-2.text-muted.small[b-uhufegcbze] {
        font-size: 0.75rem !important;
    }

    /* Buttons im Header: kompakt */
    .contact-container .card-header .btn-sm[b-uhufegcbze] {
        padding: 0.35rem 0.5rem;
        font-size: 0.8rem;
    }

    /* Tabellen-Buttons: Touch-freundlich */
    .contact-container .kachel-table-scroll .table .btn-sm[b-uhufegcbze] {
        padding: 0.35rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Sortierbare Spalten */
th[style*="cursor: pointer"][b-uhufegcbze] {
    user-select: none;
    transition: background-color 0.2s;
}

th[style*="cursor: pointer"]:hover[b-uhufegcbze] {
    background-color: #f8f9fa;
}

th[style*="cursor: pointer"] span[b-uhufegcbze] {
    margin-left: 0.25rem;
    font-size: 0.75rem;
    color: #0d6efd;
}

/* Filter-Info */
.alert-info[b-uhufegcbze] {
    border-left: 4px solid #0dcaf0;
}


/* _content/application/Components/Pages/DashboardCard.razor.rz.scp.css */
.dashboard-card[b-r0hf82jv1k] {
    background: linear-gradient(135deg, var(--card-bg-start) 0%, var(--card-bg-end) 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    border: 3px solid var(--card-border-color);
    background-image: 
        radial-gradient(circle at top right, var(--card-gradient-start) 0%, transparent 60%),
        linear-gradient(135deg, var(--card-bg-start) 0%, var(--card-bg-end) 100%);
}

.dashboard-card[b-r0hf82jv1k]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--card-color), var(--card-color-light), var(--card-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dashboard-card[b-r0hf82jv1k]::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--card-color-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dashboard-card:hover[b-r0hf82jv1k] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(var(--card-color-rgb), 0.15);
    border-color: var(--card-color);
    border-width: 3px;
    background-image: 
        radial-gradient(circle at top right, var(--card-gradient-start) 0%, transparent 60%),
        linear-gradient(135deg, var(--card-bg-start) 0%, var(--card-bg-end) 100%);
}

.dashboard-card:hover[b-r0hf82jv1k]::before {
    transform: scaleX(1);
    box-shadow: 0 4px 12px var(--card-color-light);
}

.dashboard-card:hover[b-r0hf82jv1k]::after {
    opacity: 0.1;
}

.dashboard-card:active[b-r0hf82jv1k] {
    transform: translateY(-2px);
}

.dashboard-card:focus[b-r0hf82jv1k] {
    outline: 2px solid var(--card-color);
    outline-offset: 2px;
}

.card-icon[b-r0hf82jv1k] {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--card-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.dashboard-card:hover .card-icon[b-r0hf82jv1k] {
    transform: scale(1.15) rotate(8deg) translateY(-5px);
    filter: drop-shadow(0 4px 8px var(--card-color-light));
}

.card-content[b-r0hf82jv1k] {
    flex: 1;
}

.card-title[b-r0hf82jv1k] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.card-description[b-r0hf82jv1k] {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.card-arrow[b-r0hf82jv1k] {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.75rem;
    color: var(--card-color);
    opacity: 0;
    transform: translateX(-15px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.dashboard-card:hover .card-arrow[b-r0hf82jv1k] {
    opacity: 1;
    transform: translateX(0) scale(1);
    background: var(--card-color);
    color: white;
    box-shadow: 0 4px 12px var(--card-color-light);
}

/* Color Themes */
.card-primary[b-r0hf82jv1k] {
    --card-color: #0d6efd;
    --card-color-light: #6ea8fe;
    --card-gradient-start: rgba(13, 110, 253, 0.25);
    --card-color-rgb: 13, 110, 253;
    --card-border-color: #0d6efd;
    --card-bg-start: #e3f2fd;
    --card-bg-end: #bbdefb;
}

.card-info[b-r0hf82jv1k] {
    --card-color: #0dcaf0;
    --card-color-light: #6edff6;
    --card-gradient-start: rgba(13, 202, 240, 0.25);
    --card-color-rgb: 13, 202, 240;
    --card-border-color: #0dcaf0;
    --card-bg-start: #e0f7fa;
    --card-bg-end: #b2ebf2;
}

.card-success[b-r0hf82jv1k] {
    --card-color: #198754;
    --card-color-light: #75b798;
    --card-gradient-start: rgba(25, 135, 84, 0.25);
    --card-color-rgb: 25, 135, 84;
    --card-border-color: #198754;
    --card-bg-start: #d4edda;
    --card-bg-end: #c3e6cb;
}

.card-warning[b-r0hf82jv1k] {
    --card-color: #ffc107;
    --card-color-light: #ffda6a;
    --card-gradient-start: rgba(255, 193, 7, 0.25);
    --card-color-rgb: 255, 193, 7;
    --card-border-color: #ffc107;
    --card-bg-start: #fff3cd;
    --card-bg-end: #ffeaa7;
}

.card-secondary[b-r0hf82jv1k] {
    --card-color: #6c757d;
    --card-color-light: #adb5bd;
    --card-gradient-start: rgba(108, 117, 125, 0.25);
    --card-color-rgb: 108, 117, 125;
    --card-border-color: #6c757d;
    --card-bg-start: #e9ecef;
    --card-bg-end: #dee2e6;
}

.card-purple[b-r0hf82jv1k] {
    --card-color: #6f42c1;
    --card-color-light: #a78bfa;
    --card-gradient-start: rgba(111, 66, 193, 0.25);
    --card-color-rgb: 111, 66, 193;
    --card-border-color: #6f42c1;
    --card-bg-start: #e9d5ff;
    --card-bg-end: #d8b4fe;
}

.card-dark[b-r0hf82jv1k] {
    --card-color: #212529;
    --card-color-light: #495057;
    --card-gradient-start: rgba(33, 37, 41, 0.25);
    --card-color-rgb: 33, 37, 41;
    --card-border-color: #212529;
    --card-bg-start: #e9ecef;
    --card-bg-end: #dee2e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-card[b-r0hf82jv1k] {
        padding: 1.5rem;
        min-height: 150px;
    }

    .card-icon[b-r0hf82jv1k] {
        font-size: 2.5rem;
    }

    .card-title[b-r0hf82jv1k] {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .dashboard-card[b-r0hf82jv1k] {
        padding: 1.25rem;
    }
}

/* _content/application/Components/Pages/Home.razor.rz.scp.css */
.home-container[b-u0n4po4w8k] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.welcome-section[b-u0n4po4w8k] {
    text-align: center;
    padding: 2rem 0;
}

.welcome-title[b-u0n4po4w8k] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.welcome-subtitle[b-u0n4po4w8k] {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0;
}

.dashboard-grid[b-u0n4po4w8k] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dashboard-card[b-u0n4po4w8k] {
    background: linear-gradient(135deg, var(--card-bg-start) 0%, var(--card-bg-end) 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    border: 3px solid var(--card-border-color);
    background-image: 
        radial-gradient(circle at top right, var(--card-gradient-start) 0%, transparent 60%),
        linear-gradient(135deg, var(--card-bg-start) 0%, var(--card-bg-end) 100%);
}

.dashboard-card[b-u0n4po4w8k]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--card-color), var(--card-color-light), var(--card-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dashboard-card[b-u0n4po4w8k]::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--card-color-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dashboard-card:hover[b-u0n4po4w8k] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(var(--card-color-rgb), 0.15);
    border-color: var(--card-color);
    border-width: 3px;
    background-image: 
        radial-gradient(circle at top right, var(--card-gradient-start) 0%, transparent 60%),
        linear-gradient(135deg, var(--card-bg-start, #ffffff) 0%, var(--card-bg-end, #f8f9fa) 100%);
}

.dashboard-card:hover[b-u0n4po4w8k]::before {
    transform: scaleX(1);
    box-shadow: 0 4px 12px var(--card-color-light);
}

.dashboard-card:hover[b-u0n4po4w8k]::after {
    opacity: 0.1;
}

.dashboard-card:active[b-u0n4po4w8k] {
    transform: translateY(-2px);
}

.dashboard-card:focus[b-u0n4po4w8k] {
    outline: 2px solid var(--card-color);
    outline-offset: 2px;
}

.card-icon[b-u0n4po4w8k] {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--card-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.dashboard-card:hover .card-icon[b-u0n4po4w8k] {
    transform: scale(1.15) rotate(8deg) translateY(-5px);
    filter: drop-shadow(0 4px 8px var(--card-color-light));
}

.card-content[b-u0n4po4w8k] {
    flex: 1;
}

.card-title[b-u0n4po4w8k] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.card-description[b-u0n4po4w8k] {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.card-arrow[b-u0n4po4w8k] {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.75rem;
    color: var(--card-color);
    opacity: 0;
    transform: translateX(-15px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.dashboard-card:hover .card-arrow[b-u0n4po4w8k] {
    opacity: 1;
    transform: translateX(0) scale(1);
    background: var(--card-color);
    color: white;
    box-shadow: 0 4px 12px var(--card-color-light);
}

/* Color Themes */
.card-primary[b-u0n4po4w8k] {
    --card-color: #0d6efd;
    --card-color-light: #6ea8fe;
    --card-gradient-start: rgba(13, 110, 253, 0.25);
    --card-color-rgb: 13, 110, 253;
    --card-border-color: #0d6efd;
    --card-bg-start: #e3f2fd;
    --card-bg-end: #bbdefb;
}

.card-info[b-u0n4po4w8k] {
    --card-color: #0dcaf0;
    --card-color-light: #6edff6;
    --card-gradient-start: rgba(13, 202, 240, 0.25);
    --card-color-rgb: 13, 202, 240;
    --card-border-color: #0dcaf0;
    --card-bg-start: #e0f7fa;
    --card-bg-end: #b2ebf2;
}

.card-success[b-u0n4po4w8k] {
    --card-color: #198754;
    --card-color-light: #75b798;
    --card-gradient-start: rgba(25, 135, 84, 0.25);
    --card-color-rgb: 25, 135, 84;
    --card-border-color: #198754;
    --card-bg-start: #d4edda;
    --card-bg-end: #c3e6cb;
}

.card-warning[b-u0n4po4w8k] {
    --card-color: #ffc107;
    --card-color-light: #ffda6a;
    --card-gradient-start: rgba(255, 193, 7, 0.25);
    --card-color-rgb: 255, 193, 7;
    --card-border-color: #ffc107;
    --card-bg-start: #fff3cd;
    --card-bg-end: #ffeaa7;
}

.card-secondary[b-u0n4po4w8k] {
    --card-color: #6c757d;
    --card-color-light: #adb5bd;
    --card-gradient-start: rgba(108, 117, 125, 0.25);
    --card-color-rgb: 108, 117, 125;
    --card-border-color: #6c757d;
    --card-bg-start: #e9ecef;
    --card-bg-end: #dee2e6;
}

.card-purple[b-u0n4po4w8k] {
    --card-color: #6f42c1;
    --card-color-light: #a78bfa;
    --card-gradient-start: rgba(111, 66, 193, 0.25);
    --card-color-rgb: 111, 66, 193;
    --card-border-color: #6f42c1;
    --card-bg-start: #e9d5ff;
    --card-bg-end: #d8b4fe;
}

.card-dark[b-u0n4po4w8k] {
    --card-color: #212529;
    --card-color-light: #495057;
    --card-gradient-start: rgba(33, 37, 41, 0.25);
    --card-color-rgb: 33, 37, 41;
    --card-border-color: #212529;
    --card-bg-start: #e9ecef;
    --card-bg-end: #dee2e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-container[b-u0n4po4w8k] {
        padding: 1rem;
    }

    .welcome-title[b-u0n4po4w8k] {
        font-size: 2rem;
    }

    .welcome-subtitle[b-u0n4po4w8k] {
        font-size: 1rem;
    }

    .dashboard-grid[b-u0n4po4w8k] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dashboard-card[b-u0n4po4w8k] {
        padding: 1.5rem;
        min-height: 150px;
    }

    .card-icon[b-u0n4po4w8k] {
        font-size: 2.5rem;
    }

    .card-title[b-u0n4po4w8k] {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .welcome-title[b-u0n4po4w8k] {
        font-size: 1.75rem;
    }

    .dashboard-card[b-u0n4po4w8k] {
        padding: 1.25rem;
    }
}

/* _content/application/Components/Pages/Login.razor.rz.scp.css */
.login-container[b-89wqcpc7hp] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-card[b-89wqcpc7hp] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.login-header[b-89wqcpc7hp] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

    .login-header h2[b-89wqcpc7hp] {
        margin: 0;
        font-weight: 600;
    }

.login-body[b-89wqcpc7hp] {
    padding: 30px;
}

.form-label[b-89wqcpc7hp] {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-control[b-89wqcpc7hp] {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
}

    .form-control:focus[b-89wqcpc7hp] {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    }

.btn-primary[b-89wqcpc7hp] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-weight: 500;
}

    .btn-primary:hover[b-89wqcpc7hp] {
        background: linear-gradient(135deg, #5568d3 0%, #653a8f 100%);
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

    .btn-primary:disabled[b-89wqcpc7hp] {
        opacity: 0.6;
        cursor: not-allowed;
    }
/* _content/application/Components/Pages/LoginProtocol.razor.rz.scp.css */
.protocol-container .row[b-dv3sslj51d] {
    min-height: calc(100vh - 140px);
    height: calc(100vh - 140px);
}

.protocol-container .kachel-fixed-height[b-dv3sslj51d] {
    height: calc(100vh - 140px);
    min-height: calc(100vh - 140px);
    max-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
}

.protocol-container .card-body[b-dv3sslj51d] {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.bi-card[b-dv3sslj51d] {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    background-size: cover;
}

.bi-protocol-card[b-dv3sslj51d] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M5 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 4m0 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 8m0 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5'/%3E%3Cpath d='M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z'/%3E%3Ccircle cx='3.5' cy='4' r='.5' fill='%23ffc107'/%3E%3Ccircle cx='3.5' cy='8' r='.5' fill='%23dc3545'/%3E%3Ccircle cx='3.5' cy='12' r='.5' fill='%2328a745'/%3E%3C/svg%3E");
}
/* _content/application/Components/Pages/Settings/Settings.razor.rz.scp.css */
.drag-handle[b-awx8lgkwwy] {
    cursor: grab;
    display: inline-block;
    transition: color 0.2s;
}

.drag-handle:active[b-awx8lgkwwy] {
    cursor: grabbing;
    color: #495057 !important;
}

tr[draggable="true"]:hover .drag-handle[b-awx8lgkwwy] {
    color: #495057;
}

tr[draggable="true"]:hover[b-awx8lgkwwy] {
    background-color: #f8f9fa;
}

tr[draggable="true"].opacity-50[b-awx8lgkwwy] {
    opacity: 0.5;
}

.bi-card[b-awx8lgkwwy] {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.bi-user-card[b-awx8lgkwwy] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M5 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4m4-2.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5M9 8a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4A.5.5 0 0 1 9 8m1 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5'/%3E%3Cpath d='M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zM1 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H8.96q.04-.245.04-.5C9 10.567 7.21 9 5 9c-2.086 0-3.8 1.398-3.984 3.181A1 1 0 0 1 1 12z'/%3E%3C/svg%3E");
}

.bi-settings-card[b-awx8lgkwwy] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.292-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.292c.415.764-.42 1.6-1.185 1.184l-.292-.159a1.873 1.873 0 0 0-2.692 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.693-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.292A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z'/%3E%3C/svg%3E");
}

.bi-add-card[b-awx8lgkwwy] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
    margin-right: 0;
}

/* Feste Spaltenbreiten für Tabellen im Verwaltungs-Modal */
.table-fixed-columns[b-awx8lgkwwy] {
    table-layout: fixed;
    width: 100%;
}

.table-fixed-columns th[b-awx8lgkwwy] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-fixed-columns td[b-awx8lgkwwy] {
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-word;
}

.bee-ai-settings-dialog[b-awx8lgkwwy] {
    max-width: min(1280px, 96vw);
    height: min(920px, calc(100vh - 3.5rem));
}

.bee-ai-settings-content[b-awx8lgkwwy] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bee-ai-settings-body[b-awx8lgkwwy] {
    background: #f8fafc;
    padding-bottom: 1rem;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    scrollbar-gutter: stable;
}

.bee-ai-key-card[b-awx8lgkwwy] {
    background: #f1f5f9;
}

.bee-ai-section-card[b-awx8lgkwwy] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.6rem;
    padding: 0.85rem;
}

.bee-ai-section-title[b-awx8lgkwwy] {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.bee-ai-settings-tabs .nav-item[b-awx8lgkwwy] {
    flex: 1 1 0;
}

.bee-ai-settings-tabs .nav-link[b-awx8lgkwwy] {
    width: 100%;
    text-align: center;
}

.training-classes-select-box[b-awx8lgkwwy] {
    max-height: 11rem;
    overflow-y: auto;
}

.training-classes-dropdown-toggle[b-awx8lgkwwy] {
    min-width: 12rem;
    text-align: left;
}

.bee-ai-settings-footer[b-awx8lgkwwy] {
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #dee2e6;
}

/* KI-Integration: API-URL / Token sind keine Login-Felder — zusätzlich zu data-* / autocomplete im Markup
   helfen diese Regeln, Chromes gelbes Autofill-Overlay zu mildern (optisch, nicht sicherheitskritisch). */
.bee-ai-integration-url-input:-webkit-autofill[b-awx8lgkwwy],
.bee-ai-integration-token-input:-webkit-autofill[b-awx8lgkwwy],
.bee-ai-secret-input:-webkit-autofill[b-awx8lgkwwy] {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    box-shadow: 0 0 0 1000px #fff inset;
}

/* API-Key als Textfeld (kein type=password), optisch maskiert — weniger Passwort-Manager-Treffer */
.bee-ai-secret-input[b-awx8lgkwwy] {
    -webkit-text-security: disc;
}

/* Honeypot für Passwort-Manager (nicht sichtbar, nicht fokussierbar per Tab) */
.bee-ai-credential-honeypot[b-awx8lgkwwy] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bee-ai-integration-connection-form[b-awx8lgkwwy] {
    position: relative;
}

/* _content/application/Components/Pages/Weather.razor.rz.scp.css */
/* Wetter: Kachel-Layout wie Einnahmen/Kontakte (Basis in app.css .kachel-page) */
.weather-container .kachel-fixed-height[b-qu32m55t71] {
    height: auto !important;
    min-height: 0 !important;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.weather-container.kachel-page > .row[b-qu32m55t71] {
    height: auto !important;
    min-height: 0 !important;
}

/* Scroll-Bereich: nicht wachsen (flex: 0), damit kein Leerraum zwischen Tabs und Einträgen */
.weather-container .kachel-table-scroll[b-qu32m55t71] {
    flex: 0 1 auto;
    min-height: 0;
    max-height: calc(100vh - 280px);
}

/* Tabs: kompakter Abstand zum Inhalt */
.weather-container .weather-tabs[b-qu32m55t71] {
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.weather-container .card-body[b-qu32m55t71] {
    display: block;
    overflow: visible;
}

.weather-modern-layout[b-qu32m55t71] {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(250px, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.weather-main-panel[b-qu32m55t71] {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: linear-gradient(160deg, #f8fbff 0%, #eef4ff 100%);
    padding: 0.75rem;
    min-width: 0;
}

.weather-main-top[b-qu32m55t71] {
    margin-bottom: 0.75rem;
}

.weather-main-title[b-qu32m55t71] {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.weather-main-temp[b-qu32m55t71] {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
}

.weather-main-summary[b-qu32m55t71] {
    color: #4b5563;
    font-size: 0.9rem;
}

.weather-curve-wrap[b-qu32m55t71] {
    border: 1px solid #dde3ee;
    border-radius: 0.55rem;
    background: #ffffffcc;
    padding: 0.15rem 0.25rem;
    margin-bottom: 0.55rem;
}

.weather-curve-svg[b-qu32m55t71] {
    width: 100%;
    height: 56px;
    display: block;
}

.weather-curve-canvas[b-qu32m55t71] {
    width: 100%;
    height: 130px !important;
    display: block;
}

.weather-curve-line[b-qu32m55t71] {
    fill: none;
    stroke: #4f8cf7;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.weather-week-strip[b-qu32m55t71],
.weather-hourly-strip[b-qu32m55t71] {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(92px, 1fr);
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    min-width: 0;
}

.weather-day-item[b-qu32m55t71],
.weather-hourly-item[b-qu32m55t71] {
    border: 1px solid #dde3ee;
    border-radius: 0.6rem;
    background: #ffffffd9;
    padding: 0.4rem 0.45rem;
    text-align: center;
}

.day-name[b-qu32m55t71],
.hourly-time[b-qu32m55t71] {
    font-weight: 600;
    font-size: 0.8rem;
}

.day-date[b-qu32m55t71],
.hourly-rain[b-qu32m55t71] {
    color: #6b7280;
    font-size: 0.72rem;
}

.day-icon[b-qu32m55t71],
.hourly-icon[b-qu32m55t71] {
    margin: 0.15rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}

.day-icon img[b-qu32m55t71],
.hourly-icon img[b-qu32m55t71] {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.day-temp[b-qu32m55t71],
.hourly-temp[b-qu32m55t71] {
    font-weight: 600;
    font-size: 0.82rem;
}

.day-rain[b-qu32m55t71] {
    color: #4b5563;
    font-size: 0.72rem;
}

.weather-side-cards[b-qu32m55t71] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    min-width: 0;
}

.weather-side-card[b-qu32m55t71] {
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    background: #fafafa;
    padding: 0.55rem 0.6rem;
}

.side-label[b-qu32m55t71] {
    font-size: 0.72rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.side-value[b-qu32m55t71] {
    font-weight: 700;
    margin-top: 0.18rem;
    font-size: 0.92rem;
}

.side-sub[b-qu32m55t71] {
    margin-top: 0.14rem;
    font-size: 0.72rem;
    color: #6b7280;
}

.weather-sun-card[b-qu32m55t71] {
    background: #efeff1;
    border-color: #e4e6eb;
    border-radius: 1.1rem;
    padding: 0.7rem 0.8rem 0.75rem;
}

.weather-sun-chart[b-qu32m55t71] {
    margin-top: 0.15rem;
}

.weather-sun-svg[b-qu32m55t71] {
    width: 100%;
    height: 76px;
    display: block;
}

.weather-sun-arc-bg[b-qu32m55t71] {
    fill: none;
    stroke: #d8dbe1;
    stroke-width: 7.5;
    stroke-linecap: round;
}

.weather-sun-arc-progress[b-qu32m55t71] {
    fill: none;
    stroke: url(#sunArcGradient);
    stroke-width: 7.5;
    stroke-linecap: round;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.weather-sun-dot[b-qu32m55t71] {
    fill: #dadde2;
    stroke: #ffffff;
    stroke-width: 1.6;
}

.weather-sun-icon[b-qu32m55t71] {
    font-size: 14px;
    dominant-baseline: middle;
    text-anchor: middle;
}

.weather-sun-duration[b-qu32m55t71] {
    margin-top: -0.05rem;
    text-align: center;
    font-size: 0.9rem;
    color: #111827;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.weather-sun-times[b-qu32m55t71] {
    margin-top: 0.32rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.weather-sun-time-col[b-qu32m55t71] {
    text-align: center;
}

.weather-sun-time[b-qu32m55t71] {
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.9rem);
    line-height: 1.1;
    color: #111827;
}

.weather-sun-time-label[b-qu32m55t71] {
    margin-top: 0.08rem;
    font-size: 0.75rem;
    color: #6b7280;
    letter-spacing: 0.01em;
}

.weather-uv-card[b-qu32m55t71] {
    background: #efeff1;
}

.weather-uv-content[b-qu32m55t71] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.45rem;
}

.weather-uv-value[b-qu32m55t71] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.1rem;
}

.weather-uv-level[b-qu32m55t71] {
    margin-top: 0.15rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.weather-uv-gauge-wrap[b-qu32m55t71] {
    width: clamp(66px, 8vw, 82px);
    height: clamp(66px, 8vw, 82px);
    flex: 0 0 auto;
}

.weather-uv-gauge[b-qu32m55t71] {
    width: 100%;
    height: 100%;
    transform: rotate(-88deg);
}

.uv-ring[b-qu32m55t71] {
    fill: none;
    stroke-width: 5.2;
    stroke-linecap: round;
    stroke-dasharray: 20 151;
}

.uv-seg-green[b-qu32m55t71] { stroke: #6cab2f; stroke-dashoffset: 0; }
.uv-seg-yellow[b-qu32m55t71] { stroke: #eab308; stroke-dashoffset: -24; }
.uv-seg-orange[b-qu32m55t71] { stroke: #f59e0b; stroke-dashoffset: -48; }
.uv-seg-red[b-qu32m55t71] { stroke: #d94648; stroke-dashoffset: -72; }
.uv-seg-purple[b-qu32m55t71] { stroke: #6d3fad; stroke-dashoffset: -96; }

.uv-pointer-dot[b-qu32m55t71] {
    fill: #6cab2f;
    stroke: #ffffff;
    stroke-width: 1.2;
}

@media (max-width: 1200px) {
    .weather-modern-layout[b-qu32m55t71] {
        grid-template-columns: 1fr;
    }

    .weather-side-cards[b-qu32m55t71] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .weather-side-cards[b-qu32m55t71] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile: analog Trachtkalender – Abstände stark reduziert */
@media (max-width: 768px) {
    .weather-container.kachel-page[b-qu32m55t71] {
        padding: 0.35rem 0.35rem 0 !important;
    }

    .weather-container .row.g-4[b-qu32m55t71] {
        gap: 0.15rem !important;
    }

    .weather-container .card-header[b-qu32m55t71] {
        padding: 0.3rem 0.5rem;
    }

    .weather-container .card-title[b-qu32m55t71] {
        font-size: 1rem;
        margin-bottom: 0 !important;
    }

    .weather-container .card-body[b-qu32m55t71] {
        padding: 0.35rem 0.5rem;
    }

    .weather-container .kachel-fixed-height[b-qu32m55t71] {
        height: auto !important;
        min-height: 0 !important;
    }

    /* Tabs: minimaler Abstand zum Inhalt */
    .weather-container .weather-tabs[b-qu32m55t71] {
        margin-bottom: 0.1rem;
        margin-top: 0;
    }

    .weather-container .nav-tabs.kachel-tabs .nav-link[b-qu32m55t71] {
        padding: 0.2rem 0.35rem;
        font-size: 0.8rem;
    }

    .weather-modern-layout[b-qu32m55t71] {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .weather-main-panel[b-qu32m55t71] {
        padding: 0.5rem;
    }

    .weather-main-temp[b-qu32m55t71] {
        font-size: 1.3rem;
    }

    .weather-curve-svg[b-qu32m55t71] {
        height: 44px;
    }

    .weather-curve-canvas[b-qu32m55t71] {
        height: 112px !important;
    }

    .weather-week-strip[b-qu32m55t71],
    .weather-hourly-strip[b-qu32m55t71] {
        grid-auto-columns: minmax(84px, 1fr);
        gap: 0.35rem;
    }

    .day-icon[b-qu32m55t71],
    .hourly-icon[b-qu32m55t71] {
        min-height: 36px;
    }

    .day-icon img[b-qu32m55t71],
    .hourly-icon img[b-qu32m55t71] {
        width: 36px;
        height: 36px;
    }

    .weather-side-cards[b-qu32m55t71] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .weather-side-card[b-qu32m55t71] {
        padding: 0.4rem 0.45rem;
    }

    .weather-sun-svg[b-qu32m55t71] {
        height: 70px;
    }

    .weather-sun-time[b-qu32m55t71] {
        font-size: 1.35rem;
    }

    .weather-sun-time-label[b-qu32m55t71] {
        font-size: 0.7rem;
    }

    .weather-uv-value[b-qu32m55t71] {
        font-size: 1.6rem;
    }

    .weather-uv-level[b-qu32m55t71] {
        font-size: 0.82rem;
    }

    .weather-uv-gauge-wrap[b-qu32m55t71],
    .weather-uv-gauge[b-qu32m55t71] {
        width: 62px;
        height: 62px;
    }

    /* Tabellenzeilen: Abstand zwischen Einträgen reduziert */
    .weather-container .kachel-table-scroll .table tbody tr[b-qu32m55t71] {
        margin-bottom: 0.3rem;
    }

    .weather-container .kachel-table-scroll .table tbody td[b-qu32m55t71] {
        padding: 0.35rem 0.45rem;
        font-size: 0.85rem;
    }

    .weather-container .kachel-table-scroll .table tbody td[b-qu32m55t71]::before {
        font-size: 0.8rem;
        font-weight: 600;
    }
}

@media (max-width: 520px) {
    .weather-side-cards[b-qu32m55t71] {
        grid-template-columns: 1fr;
    }

    .weather-curve-canvas[b-qu32m55t71] {
        height: 102px !important;
    }
}
