/* _content/GestioneProduzione_Cloud/Pages/GestioneUtenzePage.razor.rz.scp.css */
/* =================================
   CONTAINER PRINCIPALE
   ================================= */
.categories-container[b-hgrdipydh7] {
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* =================================
   HEADER SEZIONE
   ================================= */
.categories-header[b-hgrdipydh7] {
    margin-bottom: 1.5rem;
    text-align: center;
}

    .categories-header h1[b-hgrdipydh7] {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

        .categories-header h1 i[b-hgrdipydh7] {
            color: #3498db;
        }

    .categories-header .subtitle[b-hgrdipydh7] {
        font-size: 1rem;
        color: #7f8c8d;
        margin: 0;
    }

/* =================================
   CARD PRINCIPALE
   ================================= */
.log-card[b-hgrdipydh7] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .log-card:hover[b-hgrdipydh7] {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

/* =================================
   CARD HEADER
   ================================= */
.log-card-header[b-hgrdipydh7] {
    background: white;
    border-bottom: 2px solid #ecf0f1;
    padding: 1.5rem 1.75rem;
}

.log-card-title[b-hgrdipydh7] {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
}

.log-card-subtitle[b-hgrdipydh7] {
    font-size: 0.875rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* =================================
   FILTRI E RICERCA
   ================================= */
.log-filters[b-hgrdipydh7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.log-filter-select[b-hgrdipydh7],
.log-page-size[b-hgrdipydh7] {
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

    .log-filter-select:focus[b-hgrdipydh7],
    .log-page-size:focus[b-hgrdipydh7] {
        border-color: #3498db;
        box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
        outline: none;
    }

    .log-filter-select:hover[b-hgrdipydh7],
    .log-page-size:hover[b-hgrdipydh7] {
        border-color: #3498db;
    }

/* Search Input Group */
.log-search-group[b-hgrdipydh7] {
    position: relative;
    max-width: 320px;
}

.log-search-icon[b-hgrdipydh7] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    pointer-events: none;
    z-index: 2;
}

.log-search-input[b-hgrdipydh7] {
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 0.5rem 1rem 0.5rem 2.75rem;
    font-size: 0.9rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    width: 100%;
    background: white;
}

    .log-search-input:focus[b-hgrdipydh7] {
        border-color: #3498db;
        box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
        outline: none;
    }

    .log-search-input[b-hgrdipydh7]::placeholder {
        color: #95a5a6;
    }

/* =================================
   CARD BODY
   ================================= */
.log-card-body[b-hgrdipydh7] {
    position: relative;
}

/* =================================
   TABELLA
   ================================= */
.log-table-container[b-hgrdipydh7] {
    position: relative;
    overflow-x: auto;
}

.log-table[b-hgrdipydh7] {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

    .log-table thead[b-hgrdipydh7] {
        background: #f8f9fa;
    }

        .log-table thead th[b-hgrdipydh7] {
            border: none;
            padding: 1rem 1.5rem;
            font-size: 0.85rem;
            font-weight: 700;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

            .log-table thead th:first-child[b-hgrdipydh7] {
                padding-left: 2rem;
                border-top-left-radius: 12px;
            }

            .log-table thead th:last-child[b-hgrdipydh7] {
                border-top-right-radius: 12px;
            }

    .log-table tbody[b-hgrdipydh7] {
        animation: fadeInTable 0.4s ease-out;
    }

        .log-table tbody tr[b-hgrdipydh7] {
            transition: all 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
        }

            .log-table tbody tr:last-child[b-hgrdipydh7] {
                border-bottom: none;
            }

            .log-table tbody tr:hover[b-hgrdipydh7] {
                background: #f8f9fa;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
                transform: scale(1.002);
            }

        .log-table tbody td[b-hgrdipydh7] {
            padding: 1.25rem 1.5rem;
            vertical-align: middle;
            font-size: 0.9rem;
            color: #2c3e50;
        }

            .log-table tbody td:first-child[b-hgrdipydh7] {
                padding-left: 2rem;
            }

/* Riga cliccabile */
.clickable-row[b-hgrdipydh7] {
    cursor: pointer;
}

/* =================================
   EMPTY STATE & LOADING
   ================================= */
.log-empty-state[b-hgrdipydh7] {
    text-align: center;
    padding: 4rem 2rem;
}

    .log-empty-state svg[b-hgrdipydh7] {
        width: 64px;
        height: 64px;
        color: #bdc3c7;
        margin-bottom: 1.5rem;
    }

    .log-empty-state p[b-hgrdipydh7] {
        font-size: 1.1rem;
        color: #7f8c8d;
        margin: 0;
    }

    .log-empty-state .spinner-border[b-hgrdipydh7] {
        width: 3rem;
        height: 3rem;
        color: #3498db;
    }

/* =================================
   PAGINAZIONE FOOTER
   ================================= */
.log-card-footer[b-hgrdipydh7] {
    background: white;
    border-top: 2px solid #ecf0f1;
    padding: 1.25rem 1.75rem;
}

.log-pagination-wrapper[b-hgrdipydh7] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.log-pagination-info[b-hgrdipydh7] {
    font-size: 0.875rem;
    color: #7f8c8d;
    font-weight: 500;
}

.log-pagination-controls[b-hgrdipydh7] {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.log-pagination-btn[b-hgrdipydh7] {
    background: white;
    border: 1px solid #ecf0f1;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .log-pagination-btn:not(:last-child)[b-hgrdipydh7] {
        border-right: none;
    }

    .log-pagination-btn:hover:not(:disabled)[b-hgrdipydh7] {
        background: #3498db;
        color: white;
        transform: translateY(-1px);
    }

    .log-pagination-btn:disabled[b-hgrdipydh7] {
        cursor: not-allowed;
        opacity: 0.4;
        background: #f8f9fa;
    }

    .log-pagination-btn.current-page[b-hgrdipydh7] {
        background: #ecf0f1;
        cursor: default;
        font-weight: 700;
        color: #2c3e50;
    }

        .log-pagination-btn.current-page:hover[b-hgrdipydh7] {
            background: #ecf0f1;
            color: #2c3e50;
            transform: none;
        }

.avatar-circle[b-hgrdipydh7] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.avatar-circle-large[b-hgrdipydh7] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 36px;
}
/* _content/GestioneProduzione_Cloud/Pages/Login.razor.rz.scp.css */

/* Container principale - centrato verticalmente e orizzontalmente */
.login-container[b-09li8099kg] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

    /* Wrapper per centrare meglio su schermi larghi */
    .login-container .row[b-09li8099kg] {
        width: 100%;
        max-width: 500px;
        margin: 0;
    }

    .login-container .col-md-6[b-09li8099kg] {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

/* Logo container */
.logo-container[b-09li8099kg] {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown-b-09li8099kg 0.8s ease-out;
}

.logo-circle[b-09li8099kg] {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .logo-circle:hover[b-09li8099kg] {
        transform: scale(1.05);
    }

    .logo-circle img[b-09li8099kg] {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .logo-circle svg[b-09li8099kg] {
        width: 60px;
        height: 60px;
        fill: #667eea;
    }

.logo-text[b-09li8099kg] {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

/* Card styling */
.login-card[b-09li8099kg] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
    animation: fadeInUp-b-09li8099kg 0.8s ease-out;
}

    .login-card .card-header[b-09li8099kg] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        padding: 2rem;
        border-radius: 0;
    }

        .login-card .card-header h3[b-09li8099kg] {
            color: white;
            margin: 0;
            font-weight: 600;
            font-size: 1.5rem;
        }

    .login-card .card-body[b-09li8099kg] {
        padding: 2.5rem;
    }

/* Form inputs */
.form-label[b-09li8099kg] {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control[b-09li8099kg] {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus[b-09li8099kg] {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }

    .form-control:hover[b-09li8099kg] {
        border-color: #cbd5e0;
    }

/* Button styling */
.btn-primary[b-09li8099kg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 0.875rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

    .btn-primary:hover:not(:disabled)[b-09li8099kg] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }

    .btn-primary:active:not(:disabled)[b-09li8099kg] {
        transform: translateY(0);
    }

    .btn-primary:disabled[b-09li8099kg] {
        opacity: 0.7;
        cursor: not-allowed;
    }

/* Alert styling */
.alert-danger[b-09li8099kg] {
    background-color: #fed7d7;
    border: 2px solid #fc8181;
    color: #c53030;
    border-radius: 10px;
    padding: 1rem;
    animation: shake-b-09li8099kg 0.5s ease;
}

/* Animations */
@keyframes fadeInDown-b-09li8099kg {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-09li8099kg {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake-b-09li8099kg {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

/* Spinner */
.spinner-border-sm[b-09li8099kg] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Responsive */
@media (max-width: 768px) {
    .login-container[b-09li8099kg] {
        padding: 1rem;
    }

    .login-card .card-body[b-09li8099kg] {
        padding: 1.5rem;
    }

    .logo-circle[b-09li8099kg] {
        width: 80px;
        height: 80px;
    }

        .logo-circle img[b-09li8099kg],
        .logo-circle svg[b-09li8099kg] {
            width: 48px;
            height: 48px;
        }

    .logo-text[b-09li8099kg] {
        font-size: 1.5rem;
    }

    .login-card .card-header[b-09li8099kg] {
        padding: 1.5rem;
    }

        .login-card .card-header h3[b-09li8099kg] {
            font-size: 1.25rem;
        }
}

@media (max-width: 480px) {
    .login-container[b-09li8099kg] {
        padding: 0.5rem;
    }

    .login-card .card-body[b-09li8099kg] {
        padding: 1.25rem;
    }

    .logo-container[b-09li8099kg] {
        margin-bottom: 1.5rem;
    }
}
/* _content/GestioneProduzione_Cloud/Pages/ModuloMacchinari.razor.rz.scp.css */
.categories-container[b-gl89ol6l8y] {
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 84vh;
}

.categories-header[b-gl89ol6l8y] {
    margin-bottom: 1.5rem;
    text-align: center;
}

    .categories-header h1[b-gl89ol6l8y] {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

        .categories-header h1 i[b-gl89ol6l8y] {
            color: #3498db;
        }

    .categories-header .subtitle[b-gl89ol6l8y] {
        font-size: 1rem;
        color: #7f8c8d;
        margin: 0;
    }

/* =================================
   CARD PRINCIPALE
   ================================= */
.card[b-gl89ol6l8y] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .card:hover[b-gl89ol6l8y] {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

/* =================================
   TAB NAVIGATION
   ================================= */
.nav-tabs[b-gl89ol6l8y] {
    border-bottom: 2px solid #ecf0f1;
}

    .nav-tabs .nav-link[b-gl89ol6l8y] {
        color: #7f8c8d;
        font-weight: 500;
        border: none;
        border-bottom: 3px solid transparent;
        padding: 0.75rem 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .nav-tabs .nav-link:hover[b-gl89ol6l8y] {
            color: #3498db;
            background-color: #f8f9fa;
            border-bottom-color: #ecf0f1;
        }

        .nav-tabs .nav-link.active[b-gl89ol6l8y] {
            color: #3498db;
            background-color: transparent;
            border-bottom-color: #3498db;
            font-weight: 700;
        }

/* =================================
   FORM CONTROLS
   ================================= */
.form-label[b-gl89ol6l8y] {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control[b-gl89ol6l8y] {
    border-radius: 10px;
    border: 2px solid #ecf0f1;
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: white;
}

    .form-control:focus[b-gl89ol6l8y] {
        border-color: #3498db;
        box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
        outline: none;
    }

    .form-control:disabled[b-gl89ol6l8y] {
        background-color: #f8f9fa;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .form-control[b-gl89ol6l8y]::placeholder {
        color: #95a5a6;
    }

/* =================================
   INPUT GROUPS
   ================================= */
.input-group .btn-outline-secondary[b-gl89ol6l8y] {
    border: 2px solid #ecf0f1;
    border-left: none;
    color: #7f8c8d;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

    .input-group .btn-outline-secondary:hover[b-gl89ol6l8y] {
        background-color: #3498db;
        border-color: #3498db;
        color: white;
        transform: translateY(-1px);
    }

.input-group .form-control[b-gl89ol6l8y] {
    border-right: none;
    border-radius: 10px 0 0 10px;
}

    .input-group .form-control:focus + .btn-outline-secondary[b-gl89ol6l8y] {
        border-color: #3498db;
    }

/* =================================
   PULSANTI AZIONE
   ================================= */
.btn[b-gl89ol6l8y] {
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: none;
}

    .btn i[b-gl89ol6l8y] {
        font-size: 0.875rem;
    }

.btn-secondary[b-gl89ol6l8y] {
    background-color: #95a5a6;
    color: white;
}

    .btn-secondary:hover[b-gl89ol6l8y] {
        background-color: #7f8c8d;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(149, 165, 166, 0.4);
    }

.btn-warning[b-gl89ol6l8y] {
    background-color: #f39c12;
    color: white;
}

    .btn-warning:hover[b-gl89ol6l8y] {
        background-color: #e67e22;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
    }

.btn-danger[b-gl89ol6l8y] {
    background-color: #e74c3c;
    color: white;
}

    .btn-danger:hover:not(:disabled)[b-gl89ol6l8y] {
        background-color: #c0392b;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    }

.btn-primary[b-gl89ol6l8y] {
    background-color: #3498db;
    color: white;
}

    .btn-primary:hover[b-gl89ol6l8y] {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    }

.btn:disabled[b-gl89ol6l8y] {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none !important;
    box-shadow: none !important;
}

/* =================================
   ALERT FEEDBACK
   ================================= */
.alert[b-gl89ol6l8y] {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-weight: 500;
    border: none;
    animation: slideDown-b-gl89ol6l8y 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success[b-gl89ol6l8y] {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger[b-gl89ol6l8y] {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info[b-gl89ol6l8y] {
    background-color: #d1ecf1;
    color: #0c5460;
}

@keyframes slideDown-b-gl89ol6l8y {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   TAB CONTENT
   ================================= */
.tab-content[b-gl89ol6l8y] {
    padding-top: 1.5rem;
    min-height: 300px;
    animation: fadeInContent-b-gl89ol6l8y 0.3s ease-out;
}

.tab-pane[b-gl89ol6l8y] {
    display: none;
}

    .tab-pane.show.active[b-gl89ol6l8y] {
        display: block;
    }

@keyframes fadeInContent-b-gl89ol6l8y {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   MODAL RICERCA
   ================================= */
.modal.show[b-gl89ol6l8y] {
    display: block;
}

.modal-dialog[b-gl89ol6l8y] {
    animation: modalSlideIn-b-gl89ol6l8y 0.3s ease-out;
}

@keyframes modalSlideIn-b-gl89ol6l8y {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content[b-gl89ol6l8y] {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header[b-gl89ol6l8y] {
    background: white;
    border-bottom: 2px solid #ecf0f1;
    padding: 1.5rem 1.75rem;
    border-radius: 16px 16px 0 0;
}

.modal-title[b-gl89ol6l8y] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.modal-body[b-gl89ol6l8y] {
    max-height: 500px;
    padding: 1.5rem 1.75rem;
}

.modal-footer[b-gl89ol6l8y] {
    background: white;
    border-top: 2px solid #ecf0f1;
    padding: 1.25rem 1.75rem;
    border-radius: 0 0 16px 16px;
}

.btn-close[b-gl89ol6l8y] {
    background: transparent;
    border: none;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

    .btn-close:hover[b-gl89ol6l8y] {
        opacity: 1;
    }

/* =================================
   TABELLA MODAL
   ================================= */
.table-responsive[b-gl89ol6l8y] {
    border-radius: 12px;
    overflow: hidden;
}

.table-hover tbody tr[b-gl89ol6l8y] {
    transition: all 0.2s ease;
    cursor: pointer;
}

    .table-hover tbody tr:hover[b-gl89ol6l8y] {
        background-color: #f8f9fa !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        transform: scale(1.002);
    }

.table thead[b-gl89ol6l8y] {
    background: #f8f9fa;
}

    .table thead th[b-gl89ol6l8y] {
        border: none;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        font-weight: 700;
        color: #2c3e50;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.table tbody td[b-gl89ol6l8y] {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    font-size: 0.9rem;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
}

.table-striped tbody tr:nth-of-type(odd)[b-gl89ol6l8y] {
    background-color: rgba(248, 249, 250, 0.5);
}

/* =================================
   RESPONSIVE ADJUSTMENTS
   ================================= */
@media (max-width: 768px) {
    .nav-tabs .nav-link[b-gl89ol6l8y] {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn[b-gl89ol6l8y] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .card-header h4[b-gl89ol6l8y] {
        font-size: 1.1rem;
    }

    .modal-dialog[b-gl89ol6l8y] {
        margin: 0.5rem;
    }

    .table thead th[b-gl89ol6l8y],
    .table tbody td[b-gl89ol6l8y] {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .card-header[b-gl89ol6l8y] {
        padding: 1rem 1.25rem;
    }

    .tab-content[b-gl89ol6l8y] {
        padding-top: 1rem;
    }

    .form-control[b-gl89ol6l8y] {
        font-size: 16px; /* Previene zoom su iOS */
    }
}
/* _content/GestioneProduzione_Cloud/Pages/ModuloSchedeArticoli.razor.rz.scp.css */
.categories-container[b-e8zdxiopxf] {
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 84vh;
}

.categories-header[b-e8zdxiopxf] {
    margin-bottom: 1.5rem;
    text-align: center;
}

    .categories-header h1[b-e8zdxiopxf] {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

        .categories-header h1 i[b-e8zdxiopxf] {
            color: #3498db;
        }

    .categories-header .subtitle[b-e8zdxiopxf] {
        font-size: 1rem;
        color: #7f8c8d;
        margin: 0;
    }


/* =================================
   CARD PRINCIPALE
   ================================= */
.card[b-e8zdxiopxf] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* =================================
   HEADER SECTION - DATI ARTICOLO
   ================================= */
.article-header-section[b-e8zdxiopxf] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.section-title[b-e8zdxiopxf] {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
}

/* =================================
   SIDEBAR ACTIONS
   ================================= */
.sidebar-actions[b-e8zdxiopxf] {
    margin-top: 1.8rem;
}

.btn-block[b-e8zdxiopxf] {
    width: 100%;
}

/* =================================
   TAB NAVIGATION
   ================================= */
.nav-tabs[b-e8zdxiopxf] {
    border-bottom: 2px solid #ecf0f1;
}

    .nav-tabs .nav-link[b-e8zdxiopxf] {
        color: #7f8c8d;
        font-weight: 600;
        border: none;
        border-bottom: 3px solid transparent;
        padding: 0.75rem 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

        .nav-tabs .nav-link:hover[b-e8zdxiopxf] {
            color: #667eea;
            background-color: #f8f9fa;
            border-bottom-color: #ecf0f1;
        }

        .nav-tabs .nav-link.active[b-e8zdxiopxf] {
            color: #667eea;
            background-color: transparent;
            border-bottom-color: #667eea;
            font-weight: 700;
        }

/* =================================
   DATA GROUPS
   ================================= */
.data-group[b-e8zdxiopxf] {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #ecf0f1;
    margin-bottom: 1.5rem;
}

.group-title[b-e8zdxiopxf] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 6px;
}

/* =================================
   FORM CONTROLS
   ================================= */
.form-label[b-e8zdxiopxf] {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.form-control[b-e8zdxiopxf] {
    border-radius: 8px;
    border: 2px solid #ecf0f1;
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: white;
}

    .form-control:focus[b-e8zdxiopxf] {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
        outline: none;
    }

    .form-control:disabled[b-e8zdxiopxf],
    .form-control:read-only[b-e8zdxiopxf] {
        background-color: #f8f9fa;
        cursor: not-allowed;
        opacity: 0.7;
    }

    .form-control[b-e8zdxiopxf]::placeholder {
        color: #95a5a6;
    }

textarea.form-control[b-e8zdxiopxf] {
    resize: vertical;
}

/* =================================
   INPUT GROUPS
   ================================= */
.input-group .btn-outline-secondary[b-e8zdxiopxf] {
    border: 2px solid #ecf0f1;
    border-left: none;
    color: #7f8c8d;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

    .input-group .btn-outline-secondary:hover[b-e8zdxiopxf] {
        background-color: #667eea;
        border-color: #667eea;
        color: white;
    }

.input-group .form-control[b-e8zdxiopxf] {
    border-right: none;
    border-radius: 8px 0 0 8px;
}

    .input-group .form-control:focus + .btn-outline-secondary[b-e8zdxiopxf] {
        border-color: #667eea;
    }

/* =================================
   ACTION BUTTONS
   ================================= */
.action-buttons[b-e8zdxiopxf] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn[b-e8zdxiopxf] {
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9rem;
}

    .btn i[b-e8zdxiopxf] {
        font-size: 0.875rem;
    }

.btn-secondary[b-e8zdxiopxf] {
    background-color: #95a5a6;
    color: white;
}

    .btn-secondary:hover[b-e8zdxiopxf] {
        background-color: #7f8c8d;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(149, 165, 166, 0.4);
    }

.btn-warning[b-e8zdxiopxf] {
    background-color: #f39c12;
    color: white;
}

    .btn-warning:hover[b-e8zdxiopxf] {
        background-color: #e67e22;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
    }

.btn-danger[b-e8zdxiopxf] {
    background-color: #e74c3c;
    color: white;
}

    .btn-danger:hover:not(:disabled)[b-e8zdxiopxf] {
        background-color: #c0392b;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    }

.btn-primary[b-e8zdxiopxf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

    .btn-primary:hover[b-e8zdxiopxf] {
        background: linear-gradient(135deg, #5568d3 0%, #6a4190 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

.btn-dark[b-e8zdxiopxf] {
    background-color: #2c3e50;
    color: white;
}

    .btn-dark:hover[b-e8zdxiopxf] {
        background-color: #1a252f;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
    }

.btn-info[b-e8zdxiopxf] {
    background-color: #3498db;
    color: white;
}

    .btn-info:hover[b-e8zdxiopxf] {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    }

.btn-success[b-e8zdxiopxf] {
    background-color: #27ae60;
    color: white;
}

    .btn-success:hover[b-e8zdxiopxf] {
        background-color: #229954;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
    }

.btn:disabled[b-e8zdxiopxf] {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none !important;
    box-shadow: none !important;
}

/* =================================
   ALERT FEEDBACK
   ================================= */
.alert[b-e8zdxiopxf] {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-weight: 500;
    border: none;
    animation: slideDown-b-e8zdxiopxf 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success[b-e8zdxiopxf] {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger[b-e8zdxiopxf] {
    background-color: #f8d7da;
    color: #721c24;
}

@keyframes slideDown-b-e8zdxiopxf {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   TAB CONTENT
   ================================= */
.tab-content[b-e8zdxiopxf] {
    min-height: 400px;
    animation: fadeInContent-b-e8zdxiopxf 0.3s ease-out;
}

.tab-pane[b-e8zdxiopxf] {
    display: none;
}

    .tab-pane.show.active[b-e8zdxiopxf] {
        display: block;
    }

@keyframes fadeInContent-b-e8zdxiopxf {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   RESPONSIVE ADJUSTMENTS
   ================================= */
@media (max-width: 768px) {
    .nav-tabs .nav-link[b-e8zdxiopxf] {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .action-buttons[b-e8zdxiopxf] {
        flex-direction: column;
    }

    .btn[b-e8zdxiopxf] {
        width: 100%;
    }

    .sidebar-actions[b-e8zdxiopxf] {
        margin-top: 1rem;
    }

    .data-group[b-e8zdxiopxf] {
        padding: 1rem;
    }

    .article-header-section[b-e8zdxiopxf] {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .card-header[b-e8zdxiopxf] {
        padding: 1rem 1.25rem;
    }

        .card-header h4[b-e8zdxiopxf] {
            font-size: 1.1rem;
        }

    .form-control[b-e8zdxiopxf] {
        font-size: 16px; /* Previene zoom su iOS */
    }
}


/* =================================
   LISTINO HIGHLIGHT
   ================================= */
.listino-highlight[b-e8zdxiopxf] {
    background-color: #fff9c4 !important;
    border-color: #f9a825 !important;
    font-weight: 600;
}

    .listino-highlight:focus[b-e8zdxiopxf] {
        background-color: #fff9c4 !important;
        border-color: #f57f17 !important;
        box-shadow: 0 0 0 0.2rem rgba(249, 168, 37, 0.25);
    }
/* _content/GestioneProduzione_Cloud/Shared/MainLayout.razor.rz.scp.css */
/* =================================
   LAYOUT PRINCIPALE
   ================================= */
.page[b-cskojo78pl] {
    position: relative;
    display: flex;
    min-height: 100vh;
}

/* Sidebar - COLORE ORIGINALE */
.sidebar[b-cskojo78pl] {
    width: 250px;
    background-color: #f7f7f7; /* Grigio chiaro originale Blazor */
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
}

/* Main Content */
.main-content[b-cskojo78pl] {
    flex: 1;
    margin-left: 250px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

/* Top Row */
.top-row[b-cskojo78pl] {
    background: white;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 3.5rem;
}

.top-left-area[b-cskojo78pl] {
    flex: 1;
}

/* Hamburger Button */
.btn-hamburger[b-cskojo78pl] {
    background: white;
    border: 1px solid #dee2e6;
    color: #495057;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .btn-hamburger:hover[b-cskojo78pl] {
        background: #f8f9fa;
        border-color: #adb5bd;
    }

/* Sidebar Overlay */
.sidebar-overlay[b-cskojo78pl] {
    display: none;
}

/* User Menu */
.user-menu-container[b-cskojo78pl] {
    position: relative;
}

.user-avatar[b-cskojo78pl] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .user-avatar:hover[b-cskojo78pl] {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

.user-dropdown[b-cskojo78pl] {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    min-width: 280px;
    padding: 1rem;
    z-index: 1001;
    animation: slideDown-b-cskojo78pl 0.3s ease;
    border: 1px solid #e9ecef;
}

.user-info[b-cskojo78pl] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar-large[b-cskojo78pl] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.user-details[b-cskojo78pl] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .user-details strong[b-cskojo78pl] {
        color: #212529;
        font-size: 1rem;
    }

    .user-details small[b-cskojo78pl] {
        color: #6c757d;
        font-size: 0.85rem;
    }

.dropdown-divider[b-cskojo78pl] {
    margin: 1rem 0;
    border-color: #e9ecef;
}

.dropdown-actions .dropdown-item[b-cskojo78pl] {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    color: #212529;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

    .dropdown-actions .dropdown-item:hover[b-cskojo78pl] {
        background: #f8f9fa;
    }


/* Animazioni */
@keyframes slideDown-b-cskojo78pl {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-cskojo78pl {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =================================
   RESPONSIVE
   ================================= */

/* Tablet */
@media (max-width: 1024px) {
    .sidebar[b-cskojo78pl] {
        transform: translateX(-100%);
    }

        .sidebar.open[b-cskojo78pl] {
            transform: translateX(0);
        }

    .sidebar-overlay[b-cskojo78pl] {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn-b-cskojo78pl 0.3s ease;
    }

    .main-content[b-cskojo78pl] {
        margin-left: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sidebar[b-cskojo78pl] {
        width: 280px;
    }

    .top-row[b-cskojo78pl] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .content[b-cskojo78pl] {
        padding: 1rem !important;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .sidebar[b-cskojo78pl] {
        width: 100%;
        max-width: 320px;
    }

    .user-dropdown[b-cskojo78pl] {
        right: -10px;
        min-width: 260px;
    }
}

/* Quando non c'� sidebar (utente non autenticato), rimuovi il margine */
.page:not(:has(.sidebar)) .main-content[b-cskojo78pl] {
    margin-left: 0 !important;
    width: 100% !important;
}

/* Oppure pi� specifico per browser che non supportano :has() */
@supports not (selector(:has(*))) {
    .main-content[b-cskojo78pl] {
        margin-left: 0;
        width: 100%;
    }
    /* Ripristina quando c'� la sidebar */
    .sidebar ~ .main-content[b-cskojo78pl] {
        margin-left: 250px; /* O il valore che usi per la sidebar */
        width: calc(100% - 250px);
    }
}
/* _content/GestioneProduzione_Cloud/Shared/NavMenu.razor.rz.scp.css */
/* =================================
   NAVMENU SIDEBAR - BLU MODERNO
   ================================= */

/* Top Row NavMenu */
.top-row[b-yfdaiha9ya] {
    height: 3.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-brand[b-yfdaiha9ya] {
    font-size: 1.2rem;
    color: white !important;
    font-weight: 600;
    text-decoration: none;
}

/* Bottone hamburger/chiudi */
.navbar-toggler[b-yfdaiha9ya] {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .navbar-toggler:hover[b-yfdaiha9ya] {
        background-color: rgba(255, 255, 255, 0.25);
    }

/* Nav Scrollable */
.nav-scrollable[b-yfdaiha9ya] {
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #1e3c72 0%, #1a2f5a 100%);
}

    /* Scrollbar */
    .nav-scrollable[b-yfdaiha9ya]::-webkit-scrollbar {
        width: 6px;
    }

    .nav-scrollable[b-yfdaiha9ya]::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
    }

    .nav-scrollable[b-yfdaiha9ya]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

        .nav-scrollable[b-yfdaiha9ya]::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.4);
        }

/* Navigation Items */
.nav-item[b-yfdaiha9ya] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-yfdaiha9ya] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-yfdaiha9ya] {
        padding-bottom: 1rem;
    }

    /* Nav Links */
    .nav-item[b-yfdaiha9ya]  a {
        color: rgba(255, 255, 255, 0.9);
        border-radius: 6px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        padding: 0 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

        .nav-item[b-yfdaiha9ya]  a.active {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border-left-color: #64b5f6;
            font-weight: 600;
        }

        .nav-item[b-yfdaiha9ya]  a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            border-left-color: #64b5f6;
        }

/* Icons */
.i-home[b-yfdaiha9ya] {
    padding-right: 1ch;
}

/* Dropdown */
.dropdown-toggle[b-yfdaiha9ya] {
    cursor: pointer;
    user-select: none;
}

.dropdown-menu[b-yfdaiha9ya] {
    background-color: transparent;
    border: none;
    padding-left: 1rem;
    margin: 0;
    position: static;
    float: none;
    display: none;
}

    .dropdown-menu.show[b-yfdaiha9ya] {
        display: block;
        animation: slideDown-b-yfdaiha9ya 0.3s ease;
    }

@keyframes slideDown-b-yfdaiha9ya {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Dropdown Items */
.dropdown-item[b-yfdaiha9ya] {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
}

    .dropdown-item:hover[b-yfdaiha9ya] {
        background-color: rgba(100, 181, 246, 0.3);
        color: white;
    }

    .dropdown-item.active[b-yfdaiha9ya] {
        background-color: rgba(100, 181, 246, 0.4);
        color: white;
        font-weight: 600;
    }

/* Responsive */
@media (min-width: 1025px) {
    .navbar-toggler[b-yfdaiha9ya] {
        display: none;
    }

    .nav-scrollable[b-yfdaiha9ya] {
        display: block;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

@media (max-width: 1024px) {
    .nav-scrollable[b-yfdaiha9ya] {
        max-height: calc(100vh - 3.5rem);
    }
}

@media (max-width: 768px) {
    .navbar-brand[b-yfdaiha9ya] {
        font-size: 1rem;
    }

    .nav-item[b-yfdaiha9ya] {
        font-size: 0.85rem;
    }
}
