/* /Components/Custom/ActivityCard.razor.rz.scp.css */
.activity:not(:last-child)[b-yxxx5isj7s] {  
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
}
/* /Components/Custom/DashboardCard.razor.rz.scp.css */
/* DashboardCard.razor.css */
.dashboard-card[b-sv17by8ia9] {
    min-height: 150px;
}

.dashboard-card:hover[b-sv17by8ia9] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.icon-box[b-sv17by8ia9] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
}

.icon-box[b-sv17by8ia9] {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* /Components/Custom/PrepTasksPanel.razor.rz.scp.css */
/* Card shell */
.cc-card[b-vtzdrqvywq] {
        background: #ffffff;
        border: 1px solid #e6e8eb;
        border-radius: 12px;
        box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    }
    
    .cc-card-header[b-vtzdrqvywq] {
        padding: 16px 20px;
        border-bottom: 1px solid #eef0f2;
    }
    
    .cc-card-header h3[b-vtzdrqvywq] {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #111827;
    }
    
    .cc-empty[b-vtzdrqvywq] {
        padding: 20px;
        color: #6b7280;
    }
    
    /* Task list */
    .cc-task-list[b-vtzdrqvywq] {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .cc-task[b-vtzdrqvywq] {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
        border-bottom: 1px solid #f2f4f7;
    }
    
    .cc-task:last-child[b-vtzdrqvywq] {
        border-bottom: none;
    }
    
    .cc-task-done .cc-title[b-vtzdrqvywq] {
        color: #6b7280;
        text-decoration: line-through;
    }
    
    /* Checkbox */
    .cc-check[b-vtzdrqvywq] {
        border: 0;
        background: transparent;
        padding: 0;
        cursor: pointer;
        margin-top: 4px;
    }
    
    .cc-check-circle[b-vtzdrqvywq] {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #cbd5e1;
        display: inline-block;
    }
    
    .cc-check-circle.checked[b-vtzdrqvywq] {
        background: #22c55e;
        border-color: #22c55e;
        box-shadow: inset 0 0 0 2px #ffffff;
    }
    
    /* Main task content */
    .cc-task-main[b-vtzdrqvywq] {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .cc-title[b-vtzdrqvywq] {
        font-weight: 600;
        color: #111827;
        margin-bottom: 4px;
    }
    
    .cc-metrics[b-vtzdrqvywq] {
        display: flex;
        gap: 16px;
        color: #6b7280;
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .cc-metrics strong[b-vtzdrqvywq] {
        color: #111827;
        font-weight: 600;
    }
    
    /* "Recipe details" button */
    .cc-recipe-btn[b-vtzdrqvywq] {
        margin-top: 4px;
        border: 1px solid #d1d5db;
        background: #f9fafb;
        border-radius: 9999px;
        padding: 4px 10px;
        font-size: 12px;
        font-weight: 500;
        color: #111827;
        cursor: pointer;
    }
    
    .cc-recipe-btn:hover[b-vtzdrqvywq] {
        background: #f3f4f6;
    }
    
    /* Right-hand meta (due date + mark done) */
    .cc-task-meta[b-vtzdrqvywq] {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        margin-left: 8px;
    }
    
    .cc-duration[b-vtzdrqvywq] {
        color: #6b7280;
        font-size: 13px;
    }
    
    .cc-mark[b-vtzdrqvywq] {
        border: 1px solid #e5e7eb;
        background: #f9fafb;
        color: #111827;
        border-radius: 8px;
        padding: 8px 12px;
        font-weight: 600;
        cursor: pointer;
    }
    
    .cc-mark:hover[b-vtzdrqvywq] {
        background: #f3f4f6;
    }
    
    .cc-mark:disabled[b-vtzdrqvywq] {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    /* ===== Full-screen modal overlay ===== */
    
    .cc-modal-backdrop[b-vtzdrqvywq] {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.55);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 16px 40px;
        z-index: 1050;
    }
    
    .cc-modal[b-vtzdrqvywq] {
        width: min(640px, 100%);
        max-height: calc(100vh - 120px);
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
        border: 1px solid #e5e7eb;
        padding: 20px 24px 24px;
        overflow-y: auto;
        position: relative;
    }
    
    /* Close button (X in top-right) */
    .cc-modal-close[b-vtzdrqvywq] {
        position: absolute;
        top: 12px;
        right: 12px;
        border: none;
        background: transparent;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        color: #4b5563;
        padding: 4px;
        border-radius: 9999px;
    }
    
    .cc-modal-close:hover[b-vtzdrqvywq] {
        background: #f3f4f6;
    }
    
    /* Modal header/body */
    .cc-modal-header[b-vtzdrqvywq] {
        margin-bottom: 12px;
        padding-right: 32px;
    }
    
    .cc-modal-title[b-vtzdrqvywq] {
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 4px;
    }
    
    .cc-modal-meta[b-vtzdrqvywq] {
        font-size: 13px;
        color: #6b7280;
    }
    
    .cc-modal-meta strong[b-vtzdrqvywq] {
        margin-left: 4px;
        color: #111827;
    }
    
    /* Ingredients + steps sections inside modal */
    .cc-modal-body[b-vtzdrqvywq] {
        font-size: 14px;
        color: #374151;
    }
    
    .cc-recipe-section[b-vtzdrqvywq] {
        margin-top: 12px;
    }
    
    .cc-recipe-subtitle[b-vtzdrqvywq] {
        font-size: 13px;
        font-weight: 600;
        color: #4b5563;
        margin-bottom: 4px;
    }
    
    .cc-recipe-list[b-vtzdrqvywq],
    .cc-recipe-steps[b-vtzdrqvywq] {
        margin: 0;
        padding-left: 18px;
        font-size: 13px;
        color: #374151;
    }
    
    .cc-recipe-list li[b-vtzdrqvywq],
    .cc-recipe-steps li[b-vtzdrqvywq] {
        margin-bottom: 2px;
    }
    
    .cc-note[b-vtzdrqvywq] {
        color: #6b7280;
        font-size: 12px;
    }
    
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-myrhppqmzn] {
  position: relative;
  display: flex;
  flex-direction: column;
}

main[b-myrhppqmzn] {
  flex: 1;
  background-color: #f2f2f2;
}

.sidebar[b-myrhppqmzn] {
  background: white;
  background-image: none;
}

.top-row[b-myrhppqmzn] {
  background-color: #f7f7f7;
  border-bottom: 2px solid #d6d5d5;
  justify-content: flex-end;
  height: 3.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 640.98px) {
  .top-row[b-myrhppqmzn] {
    justify-content: space-between;
  }

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

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

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

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

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

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

#blazor-error-ui[b-myrhppqmzn] {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  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-myrhppqmzn] {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.dropdown-item[b-myrhppqmzn] {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}
.dropdown-item.active[b-myrhppqmzn],
.dropdown-item:active[b-myrhppqmzn] {
  background-color: #d3ddd5;
  color: black;
}

.dropdown-header[b-myrhppqmzn] {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-p1umisse59] {
  appearance: none;
  cursor: pointer;
  width: 3.5rem;
  height: 2.5rem;
  color: white;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  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);
}

.navbar-toggler:checked[b-p1umisse59] {
  background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-p1umisse59] {
  height: 3.5rem;
  background-color: #f7f7f7;
  border-bottom: 2px solid #d6d5d5;
  border-right: 2px solid #d6d5d5;
}

.navbar-brand[b-p1umisse59] {
  font-size: 1.3rem;
  color: #0f2937;
}

.bi[b-p1umisse59] {
  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 {
  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 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' 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 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' 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");
} */

.nav-icon[b-p1umisse59] {
  flex-shrink: 0; /* prevent shrinking */
  height: 1.5em; /* or 100% of nav-link if you want full height */
  width: 1.5em; /* square aspect ratio */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.nav-item[b-p1umisse59]  a.active {
  /*active nav link*/
  background-color: #eeeeee;
  color: #0f2937;
}

.nav-item[b-p1umisse59]  .nav-link:hover {
  /*inactive hovered nav link*/
  background-color: #eeeeee;
  color: #011827;
}

.nav-item[b-p1umisse59]  a.active:hover {
  /*active hovered nav link*/
  background-color: #d8d8d8;
  color: #0f2937;
}

.nav-scrollable[b-p1umisse59] {
  display: none;
  border-right: 2px solid #d6d5d5;
}

.navbar-toggler:checked ~ .nav-scrollable[b-p1umisse59] {
  display: block;
}

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

  .nav-scrollable[b-p1umisse59] {
    /* Never collapse the sidebar for wide screens */
    display: block;

    /* Allow sidebar to scroll for tall menus */
    height: calc(100vh - 3.5rem);
    overflow-y: auto;
  }
}
/* /Components/Pages/AdminSignUp.razor.rz.scp.css */
.signup-container[b-9c17camd9h] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 20px;
}

.signup-card[b-9c17camd9h] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.app-title[b-9c17camd9h] {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0;
}

.signup-subtitle[b-9c17camd9h] {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.role-selection .btn-check:checked + .btn[b-9c17camd9h] {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

.role-btn[b-9c17camd9h] {
    padding: 12px 20px;
    font-weight: 500;
    border: 2px solid #dee2e6;
}

.role-btn:hover[b-9c17camd9h] {
    border-color: #198754;
}

.form-label[b-9c17camd9h] {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control[b-9c17camd9h] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
}

.form-control:focus[b-9c17camd9h] {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.password-input-container[b-9c17camd9h] {
    position: relative;
}

.password-toggle-btn[b-9c17camd9h] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
}

.password-toggle-btn:hover[b-9c17camd9h] {
    color: #198754;
}

.signup-btn[b-9c17camd9h] {
    background-color: #198754;
    border-color: #198754;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
}

.signup-btn:hover[b-9c17camd9h] {
    background-color: #157347;
    border-color: #146c43;
}

.signin-link[b-9c17camd9h] {
    color: #198754;
    text-decoration: none;
    font-weight: 500;
}

.signin-link:hover[b-9c17camd9h] {
    text-decoration: underline;
}
/* /Components/Pages/Recipes/RecipeView.razor.rz.scp.css */
.detail-box[b-iwga9jy0j1] {
    background: #f8f9fa;
    border: 1px solid #e3e3e3;
}

.list-group-numbered > .list-group-item[b-iwga9jy0j1] {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 6px;
}
/* /Components/Pages/SignIn.razor.rz.scp.css */
.signin-container[b-udm65e7t4j] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 20px;
}

.signin-card[b-udm65e7t4j] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.app-title[b-udm65e7t4j] {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0;
}

.subtitle[b-udm65e7t4j] {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.role-selection .btn-check:checked + .btn[b-udm65e7t4j] {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

.role-btn[b-udm65e7t4j] {
    padding: 12px 20px;
    font-weight: 500;
    border: 2px solid #dee2e6;
}

.role-btn:hover[b-udm65e7t4j] {
    border-color: #198754;
}

.form-label[b-udm65e7t4j] {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control[b-udm65e7t4j] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
}

.form-control:focus[b-udm65e7t4j] {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.password-input-container[b-udm65e7t4j] {
    position: relative;
}

.password-toggle-btn[b-udm65e7t4j] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
}

.password-toggle-btn:hover[b-udm65e7t4j] {
    color: #198754;
}

.form-check-input:checked[b-udm65e7t4j] {
    background-color: #198754;
    border-color: #198754;
}

.forgot-password-link[b-udm65e7t4j] {
    color: #198754;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password-link:hover[b-udm65e7t4j] {
    text-decoration: underline;
}

.signin-btn[b-udm65e7t4j] {
    background-color: #198754;
    border-color: #198754;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
}

.signin-btn:hover[b-udm65e7t4j] {
    background-color: #157347;
    border-color: #146c43;
}

.signup-link[b-udm65e7t4j] {
    color: #198754;
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover[b-udm65e7t4j] {
    text-decoration: underline;
}
/* /Components/Pages/SignUp.razor.rz.scp.css */
.signup-container[b-rdacv180ub] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 20px;
}

.signup-card[b-rdacv180ub] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.app-title[b-rdacv180ub] {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0;
}

.subtitle[b-rdacv180ub] {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.role-selection .btn-check:checked + .btn[b-rdacv180ub] {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

.role-btn[b-rdacv180ub] {
    padding: 12px 20px;
    font-weight: 500;
    border: 2px solid #dee2e6;
}

.role-btn:hover[b-rdacv180ub] {
    border-color: #198754;
}

.form-label[b-rdacv180ub] {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control[b-rdacv180ub] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
}

.form-control:focus[b-rdacv180ub] {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.password-input-container[b-rdacv180ub] {
    position: relative;
}

.password-toggle-btn[b-rdacv180ub] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
}

.password-toggle-btn:hover[b-rdacv180ub] {
    color: #198754;
}

.signup-btn[b-rdacv180ub] {
    background-color: #198754;
    border-color: #198754;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
}

.signup-btn:hover[b-rdacv180ub] {
    background-color: #157347;
    border-color: #146c43;
}

.signin-link[b-rdacv180ub] {
    color: #198754;
    text-decoration: none;
    font-weight: 500;
}

.signin-link:hover[b-rdacv180ub] {
    text-decoration: underline;
}
/* /Inventory/Pages/Inventory/InventoryManagement.razor.rz.scp.css */
.inventory-container[b-zsllm8ee8u] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

.inventory-header[b-zsllm8ee8u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.inventory-header[b-zsllm8ee8u]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #198754;
}

.inventory-header h1[b-zsllm8ee8u] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inventory-header h1[b-zsllm8ee8u]::before {
    content: '📦';
    font-size: 2.2rem;
}

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

.header-actions .btn[b-zsllm8ee8u] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.header-actions .btn[b-zsllm8ee8u]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.header-actions .btn:hover[b-zsllm8ee8u]::before {
    left: 100%;
}

.header-actions .btn:hover[b-zsllm8ee8u] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.header-actions .btn-success[b-zsllm8ee8u] {
    background: #198754;
    border-color: #198754;
}

.header-actions .btn-success:hover[b-zsllm8ee8u] {
    background: #157347;
    border-color: #146c43;
}

.header-actions .btn-primary[b-zsllm8ee8u] {
    background: #198754;
    border-color: #198754;
}

.header-actions .btn-primary:hover[b-zsllm8ee8u] {
    background: #157347;
    border-color: #146c43;
}

/* Filter Tabs */
.filter-tabs[b-zsllm8ee8u] {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.tab-btn[b-zsllm8ee8u] {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid transparent;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover[b-zsllm8ee8u] {
    color: #198754;
    background: rgba(25, 135, 84, 0.1);
}

.tab-btn.active[b-zsllm8ee8u] {
    background: #198754;
    color: white;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

.btn-filter-list[b-zsllm8ee8u] {
    margin-left: auto;
    padding: 12px 24px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    color: #495057;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-filter-list:hover[b-zsllm8ee8u] {
    background: #198754;
    color: white;
    border-color: #198754;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

/* Filter Panel */
.filter-panel[b-zsllm8ee8u] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    animation: slideDown-b-zsllm8ee8u 0.3s ease;
}

@keyframes slideDown-b-zsllm8ee8u {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-row[b-zsllm8ee8u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: end;
}

.filter-group[b-zsllm8ee8u] {
    display: flex;
    flex-direction: column;
}

.filter-group label[b-zsllm8ee8u] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.filter-group .form-control[b-zsllm8ee8u] {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.filter-group .form-control:focus[b-zsllm8ee8u] {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Inventory Table */
.inventory-table-container[b-zsllm8ee8u] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.inventory-table[b-zsllm8ee8u] {
    width: 100%;
    border-collapse: collapse;
}

.inventory-table thead[b-zsllm8ee8u] {
    background: #198754;
    color: white;
    position: relative;
}

.inventory-table thead[b-zsllm8ee8u]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #146c43;
}

.inventory-table thead th[b-zsllm8ee8u] {
    padding: 18px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.inventory-table thead th:hover[b-zsllm8ee8u] {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.inventory-table thead th i[b-zsllm8ee8u] {
    margin-left: 6px;
    font-size: 0.75rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.inventory-table thead th:hover i[b-zsllm8ee8u] {
    transform: translateY(-2px);
}

.inventory-table tbody tr[b-zsllm8ee8u] {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.inventory-table tbody tr:hover[b-zsllm8ee8u] {
    background: rgba(25, 135, 84, 0.05);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.inventory-table tbody tr.row-low-stock[b-zsllm8ee8u] {
    background: linear-gradient(90deg, #fff3cd 0%, #ffe9a6 100%);
    border-left: 4px solid #ffc107;
}

.inventory-table tbody tr.row-low-stock:hover[b-zsllm8ee8u] {
    background: linear-gradient(90deg, #ffe9a6 0%, #ffd966 100%);
}

.inventory-table tbody tr.row-out-of-stock[b-zsllm8ee8u] {
    background: linear-gradient(90deg, #f8d7da 0%, #f5c2c7 100%);
    border-left: 4px solid #dc3545;
}

.inventory-table tbody tr.row-out-of-stock:hover[b-zsllm8ee8u] {
    background: linear-gradient(90deg, #f5c2c7 0%, #f1aeb5 100%);
}

.inventory-table tbody td[b-zsllm8ee8u] {
    padding: 18px 16px;
    color: #333;
    font-weight: 500;
}

.item-name[b-zsllm8ee8u] {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.item-name .badge[b-zsllm8ee8u] {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Quantity Control */
.qty-control[b-zsllm8ee8u] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 12px;
    width: fit-content;
}

.qty-btn[b-zsllm8ee8u] {
    width: 36px;
    height: 36px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #495057;
    font-weight: bold;
}

.qty-btn:hover[b-zsllm8ee8u] {
    background: #198754;
    color: white;
    border-color: #198754;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

.qty-btn:active[b-zsllm8ee8u] {
    transform: scale(0.9);
}

.qty-value[b-zsllm8ee8u] {
    min-width: 90px;
    text-align: center;
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

/* Action Buttons */
.action-buttons[b-zsllm8ee8u] {
    display: flex;
    gap: 8px;
}

.btn-action[b-zsllm8ee8u] {
    width: 36px;
    height: 36px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
}

.btn-action:hover[b-zsllm8ee8u] {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
}

.btn-action.text-danger:hover[b-zsllm8ee8u] {
    background: #dc3545;
    border-color: #dc3545;
}

/* Inventory Stats */
.inventory-stats[b-zsllm8ee8u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.stat-card[b-zsllm8ee8u] {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card[b-zsllm8ee8u]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #198754;
}

.stat-card:hover[b-zsllm8ee8u] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(25, 135, 84, 0.25);
    border-color: #198754;
}

.stat-label[b-zsllm8ee8u] {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value[b-zsllm8ee8u] {
    font-size: 2.5rem;
    font-weight: 800;
    color: #198754;
}

/* Modal */
.modal-backdrop[b-zsllm8ee8u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1040;
    animation: fadeIn-b-zsllm8ee8u 0.3s ease;
}

.modal-dialog-custom[b-zsllm8ee8u] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    width: 90%;
    max-width: 600px;
    animation: slideInModal-b-zsllm8ee8u 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInModal-b-zsllm8ee8u {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-content-custom[b-zsllm8ee8u] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.modal-header-custom[b-zsllm8ee8u] {
    padding: 28px 32px;
    background: #198754;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header-custom[b-zsllm8ee8u]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #146c43;
}

.modal-header-custom h3[b-zsllm8ee8u] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-close-custom[b-zsllm8ee8u] {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-close-custom:hover[b-zsllm8ee8u] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.modal-body-custom[b-zsllm8ee8u] {
    padding: 32px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer-custom[b-zsllm8ee8u] {
    padding: 24px 32px;
    background: #f8f9fa;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 2px solid #f0f0f0;
}

/* Animations */
@keyframes fadeIn-b-zsllm8ee8u {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn-b-zsllm8ee8u {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes pulse-b-zsllm8ee8u {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .inventory-header[b-zsllm8ee8u] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .filter-tabs[b-zsllm8ee8u] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .inventory-table-container[b-zsllm8ee8u] {
        overflow-x: auto;
    }

    .inventory-table[b-zsllm8ee8u] {
        min-width: 800px;
    }

    .inventory-stats[b-zsllm8ee8u] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Loading Spinner */
.spinner-border[b-zsllm8ee8u] {
    width: 4rem;
    height: 4rem;
    border-width: 0.4rem;
    border-color: #198754;
    border-right-color: transparent;
    animation: spin-b-zsllm8ee8u 0.75s linear infinite;
}

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

.item-name .badge[b-zsllm8ee8u] {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    animation: pulse-b-zsllm8ee8u 2s infinite;
}
