/* _content/FiveSGear.Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-2rnwxad0ny] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-2rnwxad0ny] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/FiveSGear.Web/Components/Pages/Inventory.razor.rz.scp.css */
.inventory-page[b-xwtsqxredx] {
    padding: 30px;
    background-color: #F9FAFB;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.page-header[b-xwtsqxredx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Erlaubt Umbruch auf sehr kleinen Screens */
    gap: 20px;
}

.header-actions[b-xwtsqxredx] {
    display: flex;
    gap: 12px;
}

h1[b-xwtsqxredx] {
    margin: 0;
    font-size: 1.8rem;
    color: #111827;
    font-weight: 700;
}

.subtitle[b-xwtsqxredx] {
    margin: 5px 0 0;
    color: #6B7280;
    font-size: 1rem;
}

/* Primär-Button (Blau) */
.btn-add[b-xwtsqxredx] {
    background-color: #2563EB;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    font-size: 0.95rem;
}

    .btn-add:hover[b-xwtsqxredx] {
        background-color: #1D4ED8;
    }

/* Sekundär-Button (Import) */
.btn-import[b-xwtsqxredx] {
    background-color: white;
    color: #374151;
    border: 1px solid #D1D5DB;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-size: 0.95rem;
}

    .btn-import:hover[b-xwtsqxredx] {
        background-color: #F3F4F6;
        border-color: #9CA3AF;
        color: #111827;
    }

.content-wrapper[b-xwtsqxredx] {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.animate-in[b-xwtsqxredx] {
    animation: fadeIn-b-xwtsqxredx 0.3s ease-out;
}

@keyframes fadeIn-b-xwtsqxredx {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .page-header[b-xwtsqxredx] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-actions[b-xwtsqxredx] {
        width: 100%;
        flex-direction: column;
    }

    .btn-add[b-xwtsqxredx], .btn-import[b-xwtsqxredx] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/FiveSGear.Web/Components/Pages/Login.razor.rz.scp.css */
/* Überschreibt ggf. Padding vom MainLayout für Vollbild */
.login-viewport[b-xnqok2ndum] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0F172A 0%, #1e3a8a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Liegt über allem */
    font-family: 'Segoe UI', sans-serif;
}

.login-card[b-xnqok2ndum] {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin: 20px;
}

.brand-section[b-xnqok2ndum] {
    text-align: center;
    margin-bottom: 30px;
}

.logo-badge[b-xnqok2ndum] {
    width: 60px;
    height: 60px;
    background-color: #2563EB;
    color: white;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.5);
}

h1[b-xnqok2ndum] {
    margin: 0;
    color: #1E293B;
    font-size: 1.5rem;
    font-weight: 700;
}

.subtitle[b-xnqok2ndum] {
    margin: 5px 0 0;
    color: #64748B;
    font-size: 0.9rem;
}

.input-group[b-xnqok2ndum] {
    margin-bottom: 20px;
}

    .input-group label[b-xnqok2ndum] {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: #334155;
        margin-bottom: 8px;
    }

    .input-group input[b-xnqok2ndum] {
        width: 100%;
        padding: 12px;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        outline: none;
        transition: all 0.2s;
        font-size: 1rem;
    }

        .input-group input:focus[b-xnqok2ndum] {
            border-color: #2563EB;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

.btn-login[b-xnqok2ndum] {
    width: 100%;
    padding: 12px;
    background-color: #2563EB;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
}

    .btn-login:hover:not(:disabled)[b-xnqok2ndum] {
        background-color: #1D4ED8;
    }

    .btn-login:disabled[b-xnqok2ndum] {
        background-color: #93C5FD;
        cursor: not-allowed;
    }

.error-alert[b-xnqok2ndum] {
    margin-top: 20px;
    padding: 12px;
    background-color: #FEE2E2;
    border: 1px solid #FECACA;
    color: #DC2626;
    border-radius: 8px;
    font-size: 0.875rem;
    text-align: center;
}

.footer[b-xnqok2ndum] {
    margin-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    color: #94A3B8;
    position: relative;
    z-index: 10;
}

/* Lade-Spinner */
.spinner[b-xnqok2ndum] {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin-b-xnqok2ndum 0.8s linear infinite;
}

@keyframes spin-b-xnqok2ndum {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 450px) {
    .login-card[b-xnqok2ndum] {
        padding: 20px;
    }

    .logo-badge[b-xnqok2ndum] {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
/* _content/FiveSGear.Web/Components/Pages/VehicleDetail.razor.rz.scp.css */
.detail-page[b-p5ksh2z0pj] {
    padding: 30px;
    background-color: #F9FAFB;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.nav-bar[b-p5ksh2z0pj] {
    margin-bottom: 20px;
}

.back-link[b-p5ksh2z0pj] {
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

    .back-link:hover[b-p5ksh2z0pj] {
        color: #2563EB;
    }

.loading-state[b-p5ksh2z0pj] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: #9CA3AF;
}

.content-wrapper[b-p5ksh2z0pj] {
    max-width: 100%; /* Volle Breite nutzen statt 1200px */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Animation für sanftes Einblenden */
.animate-in[b-p5ksh2z0pj] {
    animation: fadeIn-b-p5ksh2z0pj 0.3s ease-out;
}

@keyframes fadeIn-b-p5ksh2z0pj {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/FiveSGear.Web/Components/Pages/Vehicles.razor.rz.scp.css */
.page-container[b-fwm36gpliw] {
    padding: 30px;
    background-color: #F9FAFB;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.page-header[b-fwm36gpliw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

h1[b-fwm36gpliw] {
    margin: 0;
    font-size: 1.8rem;
    color: #111827;
    font-weight: 700;
}

.subtitle[b-fwm36gpliw] {
    margin: 5px 0 0;
    color: #6B7280;
    font-size: 1rem;
}

.btn-add[b-fwm36gpliw] {
    background-color: #2563EB;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    font-size: 0.95rem;
}

    .btn-add:hover[b-fwm36gpliw] {
        background-color: #1D4ED8;
    }

.vehicle-grid[b-fwm36gpliw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

@media (max-width: 600px) {
    .page-header[b-fwm36gpliw] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-add[b-fwm36gpliw] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/FiveSGear.Web/Components/VehicleCard.razor.rz.scp.css */
.vehicle-card[b-y91dpneflc] {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .vehicle-card:hover[b-y91dpneflc] {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        border-color: #2563EB;
    }

.card-header[b-y91dpneflc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.icon-wrapper[b-y91dpneflc] {
    width: 48px;
    height: 48px;
    background-color: #EFF6FF;
    color: #2563EB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.status-badge[b-y91dpneflc] {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-online[b-y91dpneflc] {
    background-color: #DCFCE7;
    color: #166534;
}

.status-offline[b-y91dpneflc] {
    background-color: #F3F4F6;
    color: #4B5563;
}

.status-warning[b-y91dpneflc] {
    background-color: #FEF3C7;
    color: #92400E;
}

.card-body[b-y91dpneflc] {
    flex: 1;
}

.vehicle-name[b-y91dpneflc] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
}

.vehicle-type[b-y91dpneflc] {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: #6B7280;
}

.card-footer[b-y91dpneflc] {
    padding-top: 15px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sync-info[b-y91dpneflc] {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
}

    .sync-info .label[b-y91dpneflc] {
        color: #9CA3AF;
    }

    .sync-info .value[b-y91dpneflc] {
        color: #4B5563;
        font-weight: 500;
    }

.btn-details[b-y91dpneflc] {
    background: none;
    border: none;
    color: #D1D5DB;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.vehicle-card:hover .btn-details[b-y91dpneflc] {
    color: #2563EB;
}
/* _content/FiveSGear.Web/Components/VehicleEditor.razor.rz.scp.css */
.modal-overlay[b-uuqco65yse] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.modal-content[b-uuqco65yse] {
    background: white;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header[b-uuqco65yse] {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
}

    .modal-header h3[b-uuqco65yse] {
        margin: 0;
        font-size: 1.1rem;
        color: #111827;
    }

.btn-close[b-uuqco65yse] {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #9ca3af;
}

.modal-body[b-uuqco65yse] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group[b-uuqco65yse] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label[b-uuqco65yse] {
        font-size: 0.85rem;
        font-weight: 600;
        color: #374151;
    }

.form-input[b-uuqco65yse] {
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
}

    .form-input:focus[b-uuqco65yse] {
        border-color: #2563eb;
        box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
    }

.row[b-uuqco65yse] {
    display: flex;
    gap: 16px;
}

.col[b-uuqco65yse] {
    flex: 1;
}

.modal-footer[b-uuqco65yse] {
    padding: 16px 24px;
    background: #f9fafb;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-primary[b-uuqco65yse] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-primary:hover[b-uuqco65yse] {
        background: #1d4ed8;
    }

.btn-secondary[b-uuqco65yse] {
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-secondary:hover[b-uuqco65yse] {
        background: #f3f4f6;
    }

.btn-danger[b-uuqco65yse] {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-danger:hover[b-uuqco65yse] {
        background: #fecaca;
    }

.me-auto[b-uuqco65yse] {
    margin-right: auto;
}

.animate-in[b-uuqco65yse] {
    animation: fadeIn-b-uuqco65yse 0.2s ease-out;
}

@keyframes fadeIn-b-uuqco65yse {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* _content/FiveSGear.Web/Components/VehicleHeader.razor.rz.scp.css */
.vehicle-header-card[b-az3z1n7org] {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.header-top[b-az3z1n7org] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.title-section[b-az3z1n7org] {
    display: flex;
    gap: 16px;
    align-items: center;
}

.icon-box[b-az3z1n7org] {
    width: 64px;
    height: 64px;
    background-color: #EFF6FF;
    color: #2563EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.callsign[b-az3z1n7org] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.vehicle-type[b-az3z1n7org] {
    color: #6B7280;
    font-size: 1rem;
}

.actions-section[b-az3z1n7org] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge[b-az3z1n7org] {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-online[b-az3z1n7org] {
    background-color: #DCFCE7;
    color: #166534;
}

.status-offline[b-az3z1n7org] {
    background-color: #F3F4F6;
    color: #4B5563;
}

.status-warning[b-az3z1n7org] {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-default[b-az3z1n7org] {
    background-color: #E5E7EB;
    color: #374151;
}

/* NEU: Layout Button */
.btn-layout[b-az3z1n7org] {
    height: 36px;
    padding: 0 16px;
    border-radius: 18px; /* Pill-Shape */
    border: 1px solid #E5E7EB;
    background: white;
    color: #4B5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

    .btn-layout:hover[b-az3z1n7org] {
        background-color: #F3F4F6;
        color: #111827;
        border-color: #D1D5DB;
    }

.btn-edit[b-az3z1n7org] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: white;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .btn-edit:hover[b-az3z1n7org] {
        background-color: #F9FAFB;
        color: #2563EB;
        border-color: #2563EB;
    }

.header-meta[b-az3z1n7org] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #F3F4F6;
}

.meta-item[b-az3z1n7org] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .meta-item .label[b-az3z1n7org] {
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #9CA3AF;
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    .meta-item .value[b-az3z1n7org] {
        font-size: 0.95rem;
        color: #374151;
        font-weight: 500;
    }

.font-mono[b-az3z1n7org] {
    font-family: monospace;
    color: #6B7280;
}

@media (max-width: 600px) {
    .header-top[b-az3z1n7org] {
        flex-direction: column;
        gap: 16px;
    }

    .actions-section[b-az3z1n7org] {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap; /* Damit Buttons bei wenig Platz umbrechen */
    }
}
/* _content/FiveSGear.Web/Components/VehicleInventory.razor.rz.scp.css */
.inventory-card[b-erotrqcf11] {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.card-header[b-erotrqcf11] {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-title h3[b-erotrqcf11] {
    margin: 0;
    font-size: 1.1rem;
    color: #111827;
}

/* Container für Filter und Suche */
.header-controls[b-erotrqcf11] {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Filter Chips Styles --- */
.filter-chips[b-erotrqcf11] {
    display: flex;
    gap: 8px;
}

.filter-chip[b-erotrqcf11] {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background-color: white;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .filter-chip:hover[b-erotrqcf11] {
        background-color: #f9fafb;
        border-color: #d1d5db;
    }

    /* Aktiver Zustand (Blau) */
    .filter-chip.active[b-erotrqcf11] {
        background-color: #eff6ff;
        color: #2563eb;
        border-color: #2563eb;
        box-shadow: 0 1px 2px rgba(37, 99, 235, 0.1);
    }

/* --- Search Box --- */
.search-box[b-erotrqcf11] {
    position: relative;
    width: 250px;
}

.search-icon[b-erotrqcf11] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
    pointer-events: none;
}

.search-box input[b-erotrqcf11] {
    width: 100%;
    padding: 6px 10px 6px 32px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

    .search-box input:focus[b-erotrqcf11] {
        border-color: #2563EB;
        box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
    }

/* --- Table Styles --- */
.table-container[b-erotrqcf11] {
    overflow-x: auto;
}

.inventory-table[b-erotrqcf11] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

    .inventory-table th[b-erotrqcf11] {
        background-color: #f9fafb;
        text-align: left;
        padding: 12px 16px;
        font-weight: 600;
        color: #6b7280;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom: 1px solid #e5e7eb;
    }

    .inventory-table td[b-erotrqcf11] {
        padding: 14px 16px;
        border-bottom: 1px solid #f3f4f6;
        color: #374151;
        vertical-align: middle;
    }

.inventory-row:last-child td[b-erotrqcf11] {
    border-bottom: none;
}

.inventory-row:hover[b-erotrqcf11] {
    background-color: #f9fafb;
}

/* Spaltenbreiten */
.col-status[b-erotrqcf11] {
    width: 50px;
    text-align: center;
}

.col-name[b-erotrqcf11] {
    min-width: 200px;
}

.col-vehicle[b-erotrqcf11] {
    width: 180px;
}

.col-location[b-erotrqcf11] {
    width: 120px;
}

.col-serial[b-erotrqcf11] {
    width: 140px;
}

.col-actions[b-erotrqcf11] {
    width: 60px;
}

/* Status Dots */
.status-dot[b-erotrqcf11] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-green[b-erotrqcf11] {
    background-color: #10b981;
    box-shadow: 0 0 0 2px #d1fae5;
}

.status-orange[b-erotrqcf11] {
    background-color: #f59e0b;
    box-shadow: 0 0 0 2px #fef3c7;
}

.status-red[b-erotrqcf11] {
    background-color: #ef4444;
    box-shadow: 0 0 0 2px #fee2e2;
}

.status-gray[b-erotrqcf11] {
    background-color: #9ca3af;
}

.status-red-blink[b-erotrqcf11] {
    background-color: #ef4444;
    box-shadow: 0 0 0 2px #fee2e2;
    animation: pulse-b-erotrqcf11 1.5s infinite;
}

@keyframes pulse-b-erotrqcf11 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.item-name[b-erotrqcf11] {
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-critical[b-erotrqcf11] {
    background-color: #fee2e2;
    color: #991b1b;
    font-size: 0.7rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-muted[b-erotrqcf11] {
    color: #6b7280;
}

.font-mono[b-erotrqcf11] {
    font-family: monospace;
    font-size: 0.9em;
}

.text-right[b-erotrqcf11] {
    text-align: right;
}

.btn-action[b-erotrqcf11] {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.inventory-row:hover .btn-action[b-erotrqcf11] {
    color: #2563EB;
}

.empty-message[b-erotrqcf11] {
    text-align: center;
    padding: 30px;
    color: #9ca3af;
    font-style: italic;
}

@media (max-width: 800px) {
    .header-controls[b-erotrqcf11] {
        width: 100%;
        flex-direction: column-reverse; /* Suche oben, Filter unten bei wenig Platz */
        align-items: stretch;
    }

    .search-box[b-erotrqcf11] {
        width: 100%;
    }

    .filter-chips[b-erotrqcf11] {
        overflow-x: auto;
        padding-bottom: 4px; /* Platz für Scrollbar */
    }
}
/* _content/FiveSGear.Web/Components/VehicleLayoutEditor.razor.rz.scp.css */
/* ... (Bestehender Code wie Header, Sidebar, Modal Overlay bleibt gleich) ... */
.modal-overlay[b-26x44dvrh9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content[b-26x44dvrh9] {
    background-color: #f9fafb;
    width: 95vw;
    height: 90vh;
    max-width: 1400px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.editor-header[b-26x44dvrh9] {
    background-color: white;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .editor-header h2[b-26x44dvrh9] {
        margin: 0;
        font-size: 1.25rem;
        color: #111827;
    }

.header-controls[b-26x44dvrh9] {
    display: flex;
    gap: 12px;
}

.editor-body[b-26x44dvrh9] {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.editor-sidebar[b-26x44dvrh9] {
    width: 320px;
    background-color: white;
    border-right: 1px solid #e5e7eb;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-title[b-26x44dvrh9] {
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.form-group[b-26x44dvrh9] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label[b-26x44dvrh9] {
        font-size: 0.875rem;
        font-weight: 500;
        color: #4b5563;
    }

.form-input[b-26x44dvrh9], .form-select[b-26x44dvrh9] {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
}

    .form-input:focus[b-26x44dvrh9], .form-select:focus[b-26x44dvrh9] {
        outline: none;
        border-color: #2563EB;
        box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
    }

.width-selector[b-26x44dvrh9] {
    display: flex;
    background-color: #f3f4f6;
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
}

.width-option[b-26x44dvrh9] {
    flex: 1;
    text-align: center;
    padding: 6px;
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
    user-select: none;
}

    .width-option.active[b-26x44dvrh9] {
        background-color: white;
        color: #2563EB;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        font-weight: 600;
    }

.editor-grid-area[b-26x44dvrh9] {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vehicle-grid-container[b-26x44dvrh9] {
    width: 100%;
    max-width: 800px;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Grid Row Layout & Controls */
.grid-row-wrapper[b-26x44dvrh9] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* NEU: Container für Label und Insert-Button */
.row-controls-left[b-26x44dvrh9] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100px; /* Breite fixieren damit Grid ausgerichtet ist */
}

.row-label[b-26x44dvrh9] {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    white-space: nowrap;
}

.grid-row[b-26x44dvrh9] {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    height: 80px;
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 8px;
    border: 1px dashed #e5e7eb;
}

.grid-item[b-26x44dvrh9] {
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    color: #374151;
    position: relative;
}

    .grid-item:hover[b-26x44dvrh9] {
        border-color: #2563EB;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .grid-item.selected[b-26x44dvrh9] {
        border-color: #2563EB;
        background-color: #eff6ff;
        color: #2563EB;
        box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
    }

    .grid-item.empty[b-26x44dvrh9] {
        border: 1px dashed #d1d5db;
        background-color: transparent;
        color: #9ca3af;
    }

        .grid-item.empty:hover[b-26x44dvrh9] {
            background-color: #f3f4f6;
            color: #6b7280;
        }

/* Row Actions */
.btn-row-action[b-26x44dvrh9] {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    color: #9ca3af;
}

    .btn-row-action.delete:hover[b-26x44dvrh9] {
        background-color: #fee2e2;
        color: #ef4444;
    }

    .btn-row-action.add[b-26x44dvrh9] {
        background-color: #f3f4f6;
        color: #6b7280;
        font-size: 1.1rem;
        line-height: 1;
    }

        .btn-row-action.add:hover[b-26x44dvrh9] {
            background-color: #dbeafe;
            color: #2563eb;
        }

/* Buttons */
.btn-primary[b-26x44dvrh9], .btn-secondary[b-26x44dvrh9], .btn-danger[b-26x44dvrh9], .btn-ghost[b-26x44dvrh9] {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-primary[b-26x44dvrh9] {
    background-color: #2563EB;
    color: white;
    border: none;
}

    .btn-primary:hover[b-26x44dvrh9] {
        background-color: #1d4ed8;
    }

.btn-secondary[b-26x44dvrh9] {
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

    .btn-secondary:hover[b-26x44dvrh9] {
        background-color: #f3f4f6;
    }

.btn-danger[b-26x44dvrh9] {
    background-color: #fee2e2;
    color: #dc2626;
    border: none;
    width: 100%;
}

    .btn-danger:hover[b-26x44dvrh9] {
        background-color: #fecaca;
    }

.btn-ghost[b-26x44dvrh9] {
    background: transparent;
    border: none;
    color: #6b7280;
}

    .btn-ghost:hover[b-26x44dvrh9] {
        color: #111827;
    }

.add-row-container[b-26x44dvrh9] {
    text-align: center;
    margin-top: 20px;
}
