/* _content/GroceryAssistant/App.razor.rz.scp.css */
.error-container[b-og4bonf2p3] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 0 20px;
}

.error-container h1[b-og4bonf2p3] {
  color: #d32f2f;
  margin-bottom: 16px;
  font-size: 2rem;
}

.error-container p[b-og4bonf2p3] {
  color: #555;
  margin-bottom: 24px;
  max-width: 600px;
}

.btn-error-reload[b-og4bonf2p3] {
  background-color: #e53935;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-error-reload:hover[b-og4bonf2p3] {
  background-color: #c62828;
}

.not-found[b-og4bonf2p3] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  text-align: center;
  padding: 0 20px;
}

.not-found h1[b-og4bonf2p3] {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.not-found p[b-og4bonf2p3] {
  color: #555;
  margin-bottom: 24px;
  max-width: 600px;
}

.btn-home[b-og4bonf2p3] {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-home:hover[b-og4bonf2p3] {
  background-color: var(--primary-dark);
  text-decoration: none;
  color: white;
}
/* _content/GroceryAssistant/Shared/Error.razor.rz.scp.css */
.error-boundary[b-fy9dwcn1rq] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.error-boundary.show[b-fy9dwcn1rq] {
  opacity: 1;
  visibility: visible;
}

.error-content[b-fy9dwcn1rq] {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.error-content h2[b-fy9dwcn1rq] {
  color: #d32f2f;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.error-message[b-fy9dwcn1rq] {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.5;
}

.error-actions[b-fy9dwcn1rq] {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn-retry[b-fy9dwcn1rq],
.btn-dismiss[b-fy9dwcn1rq] {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-retry[b-fy9dwcn1rq] {
  background-color: #e53935;
  color: white;
  border: none;
}

.btn-retry:hover[b-fy9dwcn1rq] {
  background-color: #c62828;
}

.btn-dismiss[b-fy9dwcn1rq] {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.btn-dismiss:hover[b-fy9dwcn1rq] {
  background-color: #e0e0e0;
}
/* _content/GroceryAssistant/Shared/MainLayout.razor.rz.scp.css */
:root[b-s8r2yi6svx] {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --primary-light: #c8e6c9;
  --accent-color: #ff9800;
  --text-color: #333;
  --background-light: #f9f9f9;
  --background-dark: #263238;
  --sidebar-width: 250px;
}

.page[b-s8r2yi6svx] {
  position: relative;
  display: flex;
  height: 100vh;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
}

main[b-s8r2yi6svx] {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--background-light);
}

.sidebar[b-s8r2yi6svx] {
  width: var(--sidebar-width);
  background-color: var(--background-dark);
  color: white;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-brand[b-s8r2yi6svx] {
  padding: 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand img[b-s8r2yi6svx] {
  height: 40px;
  margin-right: 10px;
}

.nav-brand h3[b-s8r2yi6svx] {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
}

.nav-items[b-s8r2yi6svx] {
  padding: 10px 0;
}

.nav-item[b-s8r2yi6svx] {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.nav-item.active[b-s8r2yi6svx] {
  background-color: var(--primary-color);
  color: white;
}

.nav-item span[b-s8r2yi6svx] {
  margin-right: 10px;
  font-size: 1.1rem;
}

.top-bar[b-s8r2yi6svx] {
  background-color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.top-bar h1[b-s8r2yi6svx] {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.content[b-s8r2yi6svx] {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sidebar[b-s8r2yi6svx] {
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  .sidebar.open[b-s8r2yi6svx] {
    left: 0;
  }

  .sidebar-toggle[b-s8r2yi6svx] {
    display: block;
  }
}

/* Error UI styles */
#blazor-error-ui[b-s8r2yi6svx] {
  background-color: #ffcdd2;
  color: #b71c1c;
  bottom: 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  left: 0;
  padding: 1rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .reload[b-s8r2yi6svx] {
  background-color: #e53935;
  border-radius: 4px;
  color: white;
  display: inline-block;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

#blazor-error-ui .reload:hover[b-s8r2yi6svx] {
  background-color: #c62828;
}

#blazor-error-ui .dismiss[b-s8r2yi6svx] {
  background-color: transparent;
  border: none;
  color: #b71c1c;
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}
