/* /Components/AIChatInterface.razor.rz.scp.css */
.ai-chat-container[b-1s4bbr4r8z] {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

/* Initial centered prompt */
.initial-prompt-container[b-1s4bbr4r8z] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.initial-prompt-wrapper[b-1s4bbr4r8z] {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.initial-prompt-wrapper h3[b-1s4bbr4r8z] {
    font-weight: 600;
    color: #212529;
}

.initial-prompt-wrapper .input-group-lg .form-control[b-1s4bbr4r8z] {
    border-radius: 0.5rem 0 0 0.5rem;
    border-right: none;
    padding: 1rem;
}

.initial-prompt-wrapper .input-group-lg .btn[b-1s4bbr4r8z] {
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1rem 1.5rem;
}

/* Conversation thread */
.conversation-thread[b-1s4bbr4r8z] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.messages-container[b-1s4bbr4r8z] {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 1rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Messages */
.message[b-1s4bbr4r8z] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeIn-b-1s4bbr4r8z 0.3s ease-in;
}

@keyframes fadeIn-b-1s4bbr4r8z {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar[b-1s4bbr4r8z] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.user-message .message-avatar[b-1s4bbr4r8z] {
    background-color: #0d6efd;
    color: white;
}

.assistant-message .message-avatar[b-1s4bbr4r8z] {
    background-color: #6c757d;
    color: white;
}

.message-content[b-1s4bbr4r8z] {
    flex: 1;
    min-width: 0;
}

.message-header[b-1s4bbr4r8z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.message-header strong[b-1s4bbr4r8z] {
    font-size: 0.9rem;
}

.message-timestamp[b-1s4bbr4r8z] {
    font-size: 0.75rem;
    color: #6c757d;
}

.message-body[b-1s4bbr4r8z] {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    word-wrap: break-word;
}

.user-message .message-body[b-1s4bbr4r8z] {
    background-color: #e3f2fd;
}

/* Typing indicator */
.typing-indicator[b-1s4bbr4r8z] {
    display: flex;
    gap: 0.3rem;
    padding: 0.5rem 0;
}

.typing-indicator span[b-1s4bbr4r8z] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #6c757d;
    animation: typing-b-1s4bbr4r8z 1.4s infinite;
}

.typing-indicator span:nth-child(2)[b-1s4bbr4r8z] {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3)[b-1s4bbr4r8z] {
    animation-delay: 0.4s;
}

@keyframes typing-b-1s4bbr4r8z {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Fixed bottom input */
.input-container[b-1s4bbr4r8z] {
    border-top: 1px solid #dee2e6;
    background-color: white;
    padding: 1rem;
}

.input-container .input-group[b-1s4bbr4r8z] {
    max-width: 900px;
    margin: 0 auto;
}

.input-container .form-control[b-1s4bbr4r8z] {
    border-radius: 0.5rem 0 0 0.5rem;
    border-right: none;
    padding: 0.75rem 1rem;
}

.input-container .btn[b-1s4bbr4r8z] {
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.75rem 1.5rem;
}

/* Scrollbar styling */
.messages-container[b-1s4bbr4r8z]::-webkit-scrollbar {
    width: 8px;
}

.messages-container[b-1s4bbr4r8z]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.messages-container[b-1s4bbr4r8z]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.messages-container[b-1s4bbr4r8z]::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* /Components/AIChatOptionsModal.razor.rz.scp.css */
/* Temperature slider zones */
.temperature-zones[b-81z62q1ifw] {
  position: relative;
  margin-top: 0.5rem;
}

.zone-markers[b-81z62q1ifw] {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 20px;
  margin-bottom: 0.5rem;
}

.zone-marker[b-81z62q1ifw] {
  position: absolute;
  font-size: 0.75rem;
  color: #6c757d;
  transform: translateX(-50%);
}

.zone-labels[b-81z62q1ifw] {
  display: flex;
  justify-content: space-around;
  margin-top: 0.5rem;
}

.zone-label[b-81z62q1ifw] {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.zone-label.factual[b-81z62q1ifw] {
  background-color: #d1ecf1;
  color: #0c5460;
}

.zone-label.balanced[b-81z62q1ifw] {
  background-color: #d4edda;
  color: #155724;
}

.zone-label.creative[b-81z62q1ifw] {
  background-color: #fff3cd;
  color: #856404;
}

.zone-label.experimental[b-81z62q1ifw] {
  background-color: #f8d7da;
  color: #721c24;
}

/* Custom range slider styling */
input[type="range"][b-81z62q1ifw] {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(to right, 
    #17a2b8 0%, 
    #17a2b8 15%, 
    #28a745 15%, 
    #28a745 35%, 
    #ffc107 35%, 
    #ffc107 60%, 
    #dc3545 60%, 
    #dc3545 100%);
  outline: none;
}

input[type="range"][b-81z62q1ifw]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0d6efd;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="range"][b-81z62q1ifw]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0d6efd;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="range"][b-81z62q1ifw]::-webkit-slider-thumb:hover {
  background: #e7f3ff;
  border-color: #0a58ca;
}

input[type="range"][b-81z62q1ifw]::-moz-range-thumb:hover {
  background: #e7f3ff;
  border-color: #0a58ca;
}

/* Alert styling adjustments */
.alert[b-81z62q1ifw] {
  border-radius: 0.375rem;
}

.alert i[b-81z62q1ifw] {
  flex-shrink: 0;
}

/* Quick presets button group */
.btn-group .btn[b-81z62q1ifw] {
  flex: 1;
}

.btn-group .btn i[b-81z62q1ifw] {
  font-size: 1.1em;
}

/* Modal backdrop */
.modal-backdrop[b-81z62q1ifw] {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Badge styling */
.badge[b-81z62q1ifw] {
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
}
/* /Components/AssetTypeTreeSelector.razor.rz.scp.css */
.asset-type-tree-selector[b-0gt134lohd] {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  background: white;
  overflow: hidden;
}

.selection-breadcrumb[b-0gt134lohd] {
  font-size: 0.875rem;
}

.tree-container[b-0gt134lohd] {
  max-height: 450px;
  overflow-y: auto;
  min-height: 200px;
}

.section-header[b-0gt134lohd] {
  position: sticky;
  top: 0;
  z-index: 10;
  background: white !important;
}

/* Category Selection View */
.category-grid[b-0gt134lohd] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.category-card[b-0gt134lohd] {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

  .category-card:hover[b-0gt134lohd],
  .category-card.hovered[b-0gt134lohd] {
    border-color: #0d6efd;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

.category-card-icon[b-0gt134lohd] {
  font-size: 2rem;
  color: #0d6efd;
  margin-right: 1rem;
  flex-shrink: 0;
}

.category-card-content[b-0gt134lohd] {
  flex-grow: 1;
  min-width: 0;
}

.category-card-name[b-0gt134lohd] {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.category-card-count[b-0gt134lohd] {
  margin-top: 0.25rem;
}

  .category-card-count .badge[b-0gt134lohd] {
    font-size: 0.75rem;
  }

.category-card-arrow[b-0gt134lohd] {
  color: #6c757d;
  font-size: 1.25rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

/* Asset Type Selection View */
.asset-types-grid[b-0gt134lohd] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.asset-type-card[b-0gt134lohd] {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

  .asset-type-card:hover[b-0gt134lohd],
  .asset-type-card.hovered[b-0gt134lohd] {
    border-color: #0d6efd;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .asset-type-card.selected[b-0gt134lohd] {
    border-color: #198754;
    background: #d1e7dd;
  }

    .asset-type-card.selected:hover[b-0gt134lohd] {
      border-color: #157347;
      background: #c1dcd0;
    }

.asset-type-card-header[b-0gt134lohd] {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.asset-type-card-icon[b-0gt134lohd] {
  font-size: 1.5rem;
  color: #0d6efd;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.asset-type-card.selected .asset-type-card-icon[b-0gt134lohd] {
  color: #198754;
}

.asset-type-card-name[b-0gt134lohd] {
  font-weight: 600;
  font-size: 1rem;
  flex-grow: 1;
  line-height: 1.3;
}

.asset-type-card-check[b-0gt134lohd] {
  margin-left: 0.5rem;
  font-size: 1.25rem;
}

.asset-type-card-description[b-0gt134lohd] {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.asset-type-card-extensions[b-0gt134lohd] {
  font-size: 0.75rem;
  color: #6c757d;
  display: flex;
  align-items: center;
}

/* Selected Summary */
.selected-summary[b-0gt134lohd] {
  border-left: 4px solid #198754;
}

/* Scrollbar styling */
.tree-container[b-0gt134lohd]::-webkit-scrollbar {
  width: 8px;
}

.tree-container[b-0gt134lohd]::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.tree-container[b-0gt134lohd]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

  .tree-container[b-0gt134lohd]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }

/* Responsive adjustments */
@@media (max-width: 768px) {
  .category-grid[b-0gt134lohd],
  .asset-types-grid[b-0gt134lohd] {
    grid-template-columns: 1fr;
  }
}
/* /Components/ConfirmDeleteUserDialog.razor.rz.scp.css */
.modal[b-h5puiag3p3] {
  display: block;
  background: rgba(0,0,0,0.3);
  z-index: 1050;
}
/* /Components/ContentKeeperList.razor.rz.scp.css */
.scrollable-container[b-wi8d6y14tc] {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.scrollable-container[b-wi8d6y14tc]::-webkit-scrollbar {
  width: 8px;
}

.scrollable-container[b-wi8d6y14tc]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.scrollable-container[b-wi8d6y14tc]::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scrollable-container[b-wi8d6y14tc]::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.scrollable-container .table[b-wi8d6y14tc] {
  margin-bottom: 0;
}

.scrollable-container thead th[b-wi8d6y14tc] {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 10;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1);
}
/* /Components/ContentKeeperNavigationContent.razor.rz.scp.css */
/* =============================================================================
   ContentKeeperNavigationContent - Complete Container Borders
   ============================================================================= */

/* Main navigation content wrapper */
[b-hwntq6njc7] .navigation-content {
  /* Inherits padding from parent card-body */
}

/* All cards within navigation content need complete borders */
[b-hwntq6njc7] .navigation-content .card {
  border: 2px solid #dee2e6 !important;
  border-radius: 0.375rem !important;
  margin-bottom: 1.25rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

[b-hwntq6njc7] .navigation-content .card-header {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6 !important;
  padding: 0.875rem 1.25rem;
}

[b-hwntq6njc7] .navigation-content .card-body {
  padding: 1.25rem;
  border: none; /* Parent card has borders */
}

/* List groups */
[b-hwntq6njc7] .navigation-content .list-group {
  border: 2px solid #dee2e6;
  border-radius: 0.375rem;
}

[b-hwntq6njc7] .navigation-content .list-group-item {
  border: 1px solid #dee2e6;
}

[b-hwntq6njc7] .navigation-content .list-group-item:last-child {
  border-bottom: 1px solid #dee2e6 !important;
}

/* Form controls */
[b-hwntq6njc7] .navigation-content .form-control {
  border: 2px solid #ced4da;
  border-radius: 0.375rem;
}

[b-hwntq6njc7] .navigation-content .form-control:focus {
  border-color: #13b0a6;
  box-shadow: 0 0 0 0.2rem rgba(19, 176, 166, 0.25);
}

/* Buttons */
[b-hwntq6njc7] .navigation-content .btn {
  border-radius: 0.375rem;
  border-width: 2px;
}

/* Responsive */
@@media (max-width: 768px) {
  [b-hwntq6njc7] .navigation-content .card-body {
    padding: 1rem;
  }
}
/* /Components/ContentKeeperOverviewContent.razor.rz.scp.css */
/* =============================================================================
   ContentKeeperOverviewContent - Complete Container Borders
   ============================================================================= */

/* Main overview container */
.workspace-overview[b-mwkdyvo0pc] {
  /* Inherits padding from parent card-body */
}

/* =============================================================================
   DESCRIPTION SECTION - Complete Borders
   ============================================================================= */
.workspace-overview > .mb-3[b-mwkdyvo0pc] {
  margin-bottom: 1.25rem !important;
}

.workspace-overview .border.rounded[b-mwkdyvo0pc] {
  border: 2px solid #dee2e6 !important;
  border-radius: 0.375rem !important;
  padding: 0.75rem !important;
  background-color: #f8f9fa;
}

.workspace-overview textarea.form-control[b-mwkdyvo0pc] {
  border: 2px solid #ced4da;
  border-radius: 0.375rem;
}

.workspace-overview textarea.form-control:focus[b-mwkdyvo0pc] {
  border-color: #13b0a6;
  box-shadow: 0 0 0 0.2rem rgba(19, 176, 166, 0.25);
}

/* =============================================================================
   DIGITAL GRIDS CONTAINER - Complete Borders on All Items
   ============================================================================= */
.digital-grids-container[b-mwkdyvo0pc] {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.digital-grids-wrapper[b-mwkdyvo0pc] {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Each digital grid item needs complete borders */
.digital-grid-item[b-mwkdyvo0pc] {
  border: 2px solid #dee2e6 !important;
  border-radius: 0.375rem;
  padding: 1.25rem;
  background-color: white;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

/* Ensure DigitalAssetGrid has complete borders */
[b-mwkdyvo0pc] .digital-grid-item > div {
  /* DigitalAssetGrid content */
}

/* Grid headers inside items */
[b-mwkdyvo0pc] .digital-grid-item h5,
[b-mwkdyvo0pc] .digital-grid-item h6 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #dee2e6;
}

/* =============================================================================
   WORKSPACE DETAILS CARD - Complete Borders
   ============================================================================= */
.workspace-overview .row.mt-4 .card[b-mwkdyvo0pc] {
  border: 2px solid #dee2e6 !important;
  border-radius: 0.375rem !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-top: 1.5rem !important;
}

.workspace-overview .row.mt-4 .card-header[b-mwkdyvo0pc] {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6 !important;
  padding: 0.875rem 1.25rem;
}

.workspace-overview .row.mt-4 .card-title[b-mwkdyvo0pc] {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
}

.workspace-overview .row.mt-4 .card-body[b-mwkdyvo0pc] {
  padding: 1.25rem;
  border: none; /* Parent card already has borders */
}

.workspace-overview .row.mt-4 .card-body p[b-mwkdyvo0pc] {
  margin-bottom: 0.75rem;
  color: #495057;
}

.workspace-overview .row.mt-4 .card-body strong[b-mwkdyvo0pc] {
  color: #2c3e50;
  font-weight: 600;
}

/* =============================================================================
   TAG LIBRARY SELECTION - Complete Borders
   ============================================================================= */
[b-mwkdyvo0pc] .workspace-overview .tag-library-selection {
  border: 2px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
  background-color: #f8f9fa;
  margin-bottom: 1.25rem;
}

/* =============================================================================
   FORM CONTROLS - Enhanced Borders
   ============================================================================= */
.workspace-overview .form-label[b-mwkdyvo0pc] {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.workspace-overview .btn[b-mwkdyvo0pc] {
  border-radius: 0.375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.workspace-overview .btn-outline-primary[b-mwkdyvo0pc] {
  border: 2px solid #13b0a6;
  color: #13b0a6;
}

.workspace-overview .btn-outline-primary:hover[b-mwkdyvo0pc] {
  background-color: #13b0a6;
  border-color: #13b0a6;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(19, 176, 166, 0.25);
}

.workspace-overview .btn-success[b-mwkdyvo0pc] {
  background-color: #13b0a6;
  border-color: #13b0a6;
  border: 2px solid #13b0a6;
}

.workspace-overview .btn-success:hover[b-mwkdyvo0pc] {
  background-color: #0f9689;
  border-color: #0f9689;
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(15, 150, 137, 0.25);
}

.workspace-overview .btn-secondary[b-mwkdyvo0pc] {
  border: 2px solid #6c757d;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */
@@media (max-width: 768px) {
  .digital-grids-wrapper[b-mwkdyvo0pc] {
    gap: 1rem;
  }

  .digital-grid-item[b-mwkdyvo0pc] {
    padding: 1rem;
  }

  .workspace-overview .row.mt-4 .card-header[b-mwkdyvo0pc] {
    padding: 0.75rem 1rem;
  }

  .workspace-overview .row.mt-4 .card-body[b-mwkdyvo0pc] {
    padding: 1rem;
  }
}

@@media (max-width: 576px) {
  .digital-grid-item[b-mwkdyvo0pc] {
    padding: 0.875rem;
  }

  .workspace-overview .row.mt-4 .card-header[b-mwkdyvo0pc] {
    padding: 0.625rem 0.875rem;
  }

  .workspace-overview .row.mt-4 .card-title[b-mwkdyvo0pc] {
    font-size: 1rem;
  }
}

/* =============================================================================
   EMPTY STATE STYLING
   ============================================================================= */
[b-mwkdyvo0pc] .digital-grid-item .alert-info {
  border: 2px dashed #13b0a6;
  background-color: rgba(19, 176, 166, 0.05);
  color: #0f9689;
  border-radius: 0.375rem;
  padding: 1rem;
  margin: 0;
}

/* =============================================================================
   LIST GROUP ITEMS (if present in grids)
   ============================================================================= */
[b-mwkdyvo0pc] .digital-grid-item .list-group-item {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

[b-mwkdyvo0pc] .digital-grid-item .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #dee2e6 !important;
}
/* /Components/DigitalAssetGrid.razor.rz.scp.css */
.digital-asset-table[b-fz6qae34zq] {
  table-layout: fixed;
  width: 100%;
}

.digital-asset-table .col-title[b-fz6qae34zq] {
  width: 25%;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.digital-asset-table .col-description[b-fz6qae34zq] {
  width: 20%;
  max-width: 200px;
}

.digital-asset-table .col-url[b-fz6qae34zq] {
  width: 8%;
  max-width: 80px;
  text-align: center;
}

.digital-asset-table .col-type[b-fz6qae34zq] {
  width: 12%;
  max-width: 120px;
}

.digital-asset-table .col-status[b-fz6qae34zq] {
  width: 10%;
  max-width: 100px;
}

.digital-asset-table .col-indexing[b-fz6qae34zq] {
  width: 15%;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.digital-asset-table .col-actions[b-fz6qae34zq] {
  width: 10%;
  min-width: 120px;
  max-width: 150px;
  text-align: right;
}

.digital-asset-table.expanded .col-title-expanded[b-fz6qae34zq] {
  width: 20%;
}

.digital-asset-table.expanded .col-description-expanded[b-fz6qae34zq] {
  width: 25%;
}

.digital-asset-table.expanded .col-url-expanded[b-fz6qae34zq] {
  width: 10%;
}

.digital-asset-table.expanded .col-type-expanded[b-fz6qae34zq] {
  width: 10%;
}

.digital-asset-table.expanded .col-status-expanded[b-fz6qae34zq] {
  width: 8%;
}

.digital-asset-table.expanded .col-indexing-expanded[b-fz6qae34zq] {
  width: 12%;
}

.digital-asset-table.expanded .col-actions-expanded[b-fz6qae34zq] {
  width: 15%;
  min-width: 140px;
  text-align: right;
}

.digital-asset-table .badge[b-fz6qae34zq] {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.type-badge[b-fz6qae34zq] {
  max-width: 110px;
}

  .type-badge .type-text[b-fz6qae34zq] {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.btn-group[b-fz6qae34zq] {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
}

  .btn-group .btn[b-fz6qae34zq] {
    flex: 0 0 auto;
    min-width: 32px;
    padding: 0.25rem 0.4rem;
  }

.btn-outline-warning .bi-arrow-clockwise[b-fz6qae34zq] {
  transition: transform 0.3s ease;
}

.btn-outline-warning:hover .bi-arrow-clockwise[b-fz6qae34zq] {
  transform: rotate(180deg);
}

.digital-asset-popup-overlay[b-fz6qae34zq] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.digital-asset-popup-content[b-fz6qae34zq] {
  background-color: white;
  border-radius: 0.5rem;
  width: 95%;
  max-width: 1400px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-header[b-fz6qae34zq] {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #dee2e6;
  background-color: #f8f9fa;
  border-radius: 0.5rem 0.5rem 0 0;
}

.popup-body[b-fz6qae34zq] {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

/* ? Scrollable container with max-height of 300px */
.digital-asset-scrollable[b-fz6qae34zq] {
  max-height: 300px; /* Reduced from 400px */
  overflow-x: auto;
  overflow-y: auto;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}

/* Custom styling for web crawler button to improve contrast */
.btn-outline-info[b-fz6qae34zq] {
  color: #0a7ea4;
  border-color: #0a7ea4;
}

.btn-outline-info:hover[b-fz6qae34zq] {
  color: #fff;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* =============================================================================
   ERROR UI STYLES
   ============================================================================= */
#blazor-error-ui[b-su1rztk2rx] {
  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-su1rztk2rx] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
  }

  #blazor-error-ui .reload[b-su1rztk2rx] {
    color: #fff;
    background: #13b0a6;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }

    #blazor-error-ui .reload:hover[b-su1rztk2rx] {
      background: #0f9689;
    }

@font-face {
  font-family: 'CustomFont';
  src: url('/fonts/CustomFont.woff2') format('woff2'), url('/fonts/CustomFont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* =============================================================================
   MAIN LAYOUT STRUCTURE
   ============================================================================= */
.main-layout[b-su1rztk2rx] {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* =============================================================================
   TOP BAR STYLES
   ============================================================================= */
.topbar[b-su1rztk2rx] {
  background: #13b0a6;
  color: #fff;
  padding: 1rem 2rem;
  min-height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dee2e6;
  position: relative;
}

.topbar-content[b-su1rztk2rx] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar h2[b-su1rztk2rx] {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.topbar-logo[b-su1rztk2rx] {
  display: flex;
  align-items: center;
}

.main-logo[b-su1rztk2rx] {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}

  .main-logo:hover[b-su1rztk2rx] {
    transform: scale(1.05);
  }

.topbar .nav-item[b-su1rztk2rx] {
  position: relative;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

  .topbar .nav-item:hover[b-su1rztk2rx] {
    color: #0f9689;
  }

  .topbar .nav-item.active[b-su1rztk2rx] {
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #0f9689;
  }

/* =============================================================================
   LOADING INDICATOR
   ============================================================================= */
.loading-indicator[b-su1rztk2rx] {
  position: relative;
  background-color: transparent;
  padding: 2rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: none;
  box-shadow: none;
  transform: none;
  top: auto;
  left: auto;
}

.spinner-container[b-su1rztk2rx] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loading-spinner[b-su1rztk2rx] {
  width: 48px;
  height: 48px;
  border: 4px solid #e3e3e3;
  border-top: 4px solid #13b0a6;
  border-radius: 50%;
  animation: spin-b-su1rztk2rx 1s linear infinite;
  box-shadow: 0 2px 8px rgba(19, 176, 166, 0.2);
}

.loading-dots[b-su1rztk2rx] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot[b-su1rztk2rx] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #13b0a6;
  animation: dot-bounce-b-su1rztk2rx 1.4s ease-in-out infinite both;
}

.dot-1[b-su1rztk2rx] {
  animation-delay: -0.32s;
}

.dot-2[b-su1rztk2rx] {
  animation-delay: -0.16s;
}

.dot-3[b-su1rztk2rx] {
  animation-delay: 0s;
}

/* =============================================================================
   BODY CONTAINER
   ============================================================================= */
.body-container[b-su1rztk2rx] {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

/* =============================================================================
   SIDEBAR TOGGLE BAR
   ============================================================================= */
.sidebar-toggle-bar[b-su1rztk2rx] {
  width: 8px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
  flex-shrink: 0;
  order: 2;
  transition: all 0.3s ease;
}

.sidebar-toggle[b-su1rztk2rx] {
  background: transparent;
  color: #13b0a6;
  border: none;
  width: 24px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

  .sidebar-toggle:hover[b-su1rztk2rx] {
    background: rgba(19, 176, 166, 0.1);
    color: #0f9689;
  }

  .sidebar-toggle i[b-su1rztk2rx] {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
  }

/* =============================================================================
   MAIN CONTENT
   ============================================================================= */
.main-content[b-su1rztk2rx] {
  flex: 1 1 auto;
  padding: 2rem;
  overflow-y: auto;
  background-color: #ffffff;
  transition: margin-left 0.3s ease;
  order: 3;
}

/* =============================================================================
   APPLICATION LOADING STYLES
   ============================================================================= */
.app-loading[b-su1rztk2rx] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  text-align: center;
  color: #666;
}

  .app-loading h3[b-su1rztk2rx] {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.8rem;
    font-weight: 300;
  }

  .app-loading p[b-su1rztk2rx] {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #6c757d;
  }

.loading-message[b-su1rztk2rx] {
  font-style: italic;
  color: #13b0a6;
  margin-top: 1rem;
  font-weight: 500;
}

/* =============================================================================
   DEVELOPMENT INFO STYLES
   ============================================================================= */
.dev-info[b-su1rztk2rx] {
  background: #1d1e22;
  border-color: #333740;
  color: #e0e0e0;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 1rem;
  margin-top: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

  .dev-info p[b-su1rztk2rx] {
    margin: 0.5rem 0;
    word-break: break-all;
  }

  .dev-info a[b-su1rztk2rx] {
    color: #13b0a6;
    text-decoration: underline;
  }

/* =============================================================================
   OTHER BUTTON STYLES
   ============================================================================= */
.reload[b-su1rztk2rx] {
  background: #13b0a6;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.2s ease;
}

  .reload:hover[b-su1rztk2rx] {
    background: #0f9689;
  }

.tab-btn[b-su1rztk2rx],
.submit-btn[b-su1rztk2rx] {
  border: 2px solid #1976d2;
  border-radius: 6px;
  background: #f5faff;
  color: #1976d2;
  padding: 0.5rem 1.5rem;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

  .tab-btn:disabled[b-su1rztk2rx] {
    background: #1976d2;
    color: #fff;
    cursor: default;
    opacity: 0.8;
  }

.submit-btn[b-su1rztk2rx] {
  background: #1976d2;
  color: #fff;
  margin-top: 1rem;
}

  .submit-btn:disabled[b-su1rztk2rx] {
    opacity: 0.8;
    cursor: default;
  }

.responsive-element[b-su1rztk2rx] {
  display: flex;
  flex-direction: column;
}

  .responsive-element > *[b-su1rztk2rx] {
    flex: 1 1 auto;
  }

/* =============================================================================
   UTILITY STYLES
   ============================================================================= */
.tab-header[b-su1rztk2rx] {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.button-row[b-su1rztk2rx] {
  display: flex;
  gap: 0.5rem;
}

.arrow[b-su1rztk2rx] {
  font-size: 2em;
  font-weight: bold;
  color: #333;
}

.copied-message[b-su1rztk2rx] {
  margin-left: 0.5rem;
  color: var(--primary-green);
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */
@keyframes dots-b-su1rztk2rx {
  0%, 20% {
    content: '';
  }

  40% {
    content: '.';
  }

  60% {
    content: '..';
  }

  80%, 100% {
    content: '...';
  }
}

@keyframes spin-b-su1rztk2rx {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes dot-bounce-b-su1rztk2rx {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes phx-spin-b-su1rztk2rx {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes phx-fadeIn-b-su1rztk2rx {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn-b-su1rztk2rx {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn-b-su1rztk2rx {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =============================================================================
   SPINNER AND OVERLAY STYLES
   ============================================================================= */
.busy-spinner-overlay[b-su1rztk2rx] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: phx-fadeIn-b-su1rztk2rx 0.3s ease-in;
}

.phx-spinner-large[b-su1rztk2rx] {
  border: 12px solid #ccc;
  border-top: 12px solid #0078d4;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: phx-spin-b-su1rztk2rx 1s linear infinite;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.spinner-text[b-su1rztk2rx] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  color: #1976d2;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
}

/* =============================================================================
   EVALUATION OUTPUT STYLES
   ============================================================================= */
.evaluation-output[b-su1rztk2rx] {
  border: 1px solid #222;
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
  min-height: 120px;
  margin-top: 1rem;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.cover-letter-label[b-su1rztk2rx] {
  display: block;
  margin-top: 1rem;
}

.cover-letter-options[b-su1rztk2rx] {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 0.9rem;
  font-weight: normal;
  margin-top: 0.5rem;
}

  .cover-letter-options label[b-su1rztk2rx] {
    color: #000;
    font-size: 0.9rem;
    font-weight: normal;
  }

.token-input-wrapper[b-su1rztk2rx] {
  position: relative;
  display: flex;
  align-items: center;
}

.token-input[b-su1rztk2rx] {
  padding: 0.375rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  flex: 1;
}

.token-remove[b-su1rztk2rx] {
  position: absolute;
  right: 8px;
  cursor: pointer;
  color: #999;
}

  .token-remove:hover[b-su1rztk2rx] {
    color: #333;
  }

/* =============================================================================
   TOKEN LIMIT INPUT STYLES
   ============================================================================= */
.token-limit-input[b-su1rztk2rx] {
  width: 80px;
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

  .token-limit-input:focus[b-su1rztk2rx] {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  }

.token-limit-info[b-su1rztk2rx] {
  font-size: 12px;
  color: #666;
  font-style: italic;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */
@media (max-width: 768px) {
  .topbar[b-su1rztk2rx] {
    padding: 0.5rem 1rem;
  }

    .topbar h2[b-su1rztk2rx] {
      font-size: 1.25rem;
    }

  .main-logo[b-su1rztk2rx] {
    height: 32px;
    max-width: 150px;
  }

  .main-content[b-su1rztk2rx] {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .topbar-content[b-su1rztk2rx] {
    flex-direction: column;
    gap: 0.5rem;
  }

  .topbar[b-su1rztk2rx] {
    min-height: auto;
    padding: 0.75rem 0.5rem;
  }

  .main-logo[b-su1rztk2rx] {
    height: 28px;
    max-width: 120px;
  }

  .sidebar-toggle-bar[b-su1rztk2rx] {
    width: 8px;
    background: #f4f4f4;
  }

  .sidebar-toggle[b-su1rztk2rx] {
    background: #f4f4f4;
  }
}

/* =============================================================================
   TOOLTIP STYLES FOR COLLAPSED SIDEBAR
   ============================================================================= */
.sidebar.collapsed a[title][b-su1rztk2rx],
.sidebar.collapsed button[title][b-su1rztk2rx] {
  position: relative;
}

  .sidebar.collapsed a[title]:hover[b-su1rztk2rx]::after,
  .sidebar.collapsed button[title]:hover[b-su1rztk2rx]::after {
    content: attr(title);
    position: absolute;
    left: calc(100% + 30px); /* Increased from 20px to 30px */
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
  }

  .sidebar.collapsed a[title]:hover[b-su1rztk2rx]::before,
  .sidebar.collapsed button[title]:hover[b-su1rztk2rx]::before {
    content: '';
    position: absolute;
    left: calc(100% + 22px); /* Increased from 12px to 22px */
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-right-color: #2c3e50;
    z-index: 1001;
    pointer-events: none;
  }

.sidebar.collapsed a.active[title]:hover[b-su1rztk2rx]::after {
  background: #13b0a6;
}

.sidebar.collapsed a.active[title]:hover[b-su1rztk2rx]::before {
  border-right-color: #13b0a6;
}

.sidebar.collapsed .logout-link[title]:hover[b-su1rztk2rx]::after {
  background: #dc3545;
}

.sidebar.collapsed .logout-link[title]:hover[b-su1rztk2rx]::before {
  border-right-color: #dc3545;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* =============================================================================
   SIDEBAR STYLES
   ============================================================================= */
.sidebar[b-giorvs9l7a] {
  width: 220px;
  background: #f4f4f4;
  padding: 0.5rem 0.25rem;
  border-right: 1px solid #ddd;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
  order: 1;
}

  .sidebar.collapsed[b-giorvs9l7a] {
    width: 60px !important;
    padding: 1rem 0.25rem !important;
  }

  .sidebar.disabled[b-giorvs9l7a] {
    pointer-events: none;
    opacity: 0.6;
  }

  .sidebar ul[b-giorvs9l7a] {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar li[b-giorvs9l7a] {
    margin-bottom: 1rem;
  }

  .sidebar.collapsed .nav-text[b-giorvs9l7a] {
    display: none !important;
  }

  .sidebar.collapsed a[b-giorvs9l7a],
  .sidebar.collapsed .login-button[b-giorvs9l7a],
  .sidebar.collapsed .signup-button[b-giorvs9l7a],
  .sidebar.collapsed .logout-link[b-giorvs9l7a] {
    justify-content: center !important;
    padding: 0.75rem 0.5rem !important;
  }

    .sidebar.collapsed a i[b-giorvs9l7a],
    .sidebar.collapsed .login-button i[b-giorvs9l7a],
    .sidebar.collapsed .signup-button i[b-giorvs9l7a],
    .sidebar.collapsed .logout-link i[b-giorvs9l7a] {
      margin-right: 0 !important;
      font-size: 1.25rem !important;
    }

  .sidebar.collapsed .auth-section[b-giorvs9l7a] {
    padding: 0.5rem !important;
  }

/* =============================================================================
   SHARED INTERACTIVE ELEMENT STYLES
   ============================================================================= */
.sidebar a[b-giorvs9l7a],
.login-button[b-giorvs9l7a],
.signup-button[b-giorvs9l7a],
.logout-link[b-giorvs9l7a] {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0.25rem;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  background: transparent;
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sidebar a[b-giorvs9l7a] {
  display: flex;
}

.login-button[b-giorvs9l7a],
.signup-button[b-giorvs9l7a] {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.nav-text[b-giorvs9l7a] {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
}

/* =============================================================================
   HOVER STATES
   ============================================================================= */
.sidebar a:hover[b-giorvs9l7a],
.login-button:hover[b-giorvs9l7a],
.signup-button:hover[b-giorvs9l7a] {
  background: #e9ecef;
  text-decoration: none;
  color: #2c3e50;
  border-left-color: #13b0a6;
  transform: translateX(2px);
}

.sidebar.collapsed a:hover[b-giorvs9l7a],
.sidebar.collapsed .login-button:hover[b-giorvs9l7a],
.sidebar.collapsed .signup-button:hover[b-giorvs9l7a] {
  transform: none;
}

.logout-link:hover[b-giorvs9l7a] {
  background-color: rgba(220, 53, 69, 0.1);
  text-decoration: none;
  color: #dc3545;
  border-left-color: #dc3545;
  transform: translateX(2px);
}

.sidebar.collapsed .logout-link:hover[b-giorvs9l7a] {
  transform: none;
}

/* =============================================================================
   ACTIVE STATES
   ============================================================================= */
.sidebar a.active[b-giorvs9l7a] {
  background: #13b0a6;
  color: #fff;
  font-weight: 600;
  border-left-color: #0f9689;
}

  .sidebar a.active:hover[b-giorvs9l7a] {
    transform: none;
  }

/* =============================================================================
   DISABLED STATES
   ============================================================================= */
.sidebar a.disabled[b-giorvs9l7a],
.login-button:disabled[b-giorvs9l7a],
.signup-button:disabled[b-giorvs9l7a] {
  color: #ccc !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
  background: #f8f9fa;
}

/* =============================================================================
   ICON STYLES
   ============================================================================= */
.sidebar a i[b-giorvs9l7a],
.login-button i[b-giorvs9l7a],
.signup-button i[b-giorvs9l7a],
.logout-link i[b-giorvs9l7a] {
  color: #13b0a6;
  margin-right: 0.5rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.logout-link i[b-giorvs9l7a] {
  color: #dc3545;
}

.sidebar a.active i[b-giorvs9l7a],
.sidebar a:hover i[b-giorvs9l7a],
.login-button:hover i[b-giorvs9l7a],
.signup-button:hover i[b-giorvs9l7a] {
  color: inherit;
}

/* =============================================================================
   SPECIAL BUTTON VARIANTS
   ============================================================================= */
.signup-button[b-giorvs9l7a] {
  background: rgba(19, 176, 166, 0.08);
  border: 1px solid #13b0a6;
}

  .signup-button:hover[b-giorvs9l7a] {
    background: #13b0a6;
    color: #fff;
    border-color: #0f9689;
  }

/* =============================================================================
   SECTION CONTAINERS
   ============================================================================= */
.auth-section[b-giorvs9l7a] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(19, 176, 166, 0.05);
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* =============================================================================
   TOOLTIP STYLES FOR COLLAPSED SIDEBAR
   ============================================================================= */
.sidebar.collapsed a[title][b-giorvs9l7a],
.sidebar.collapsed button[title][b-giorvs9l7a] {
  position: relative;
}

  .sidebar.collapsed a[title]:hover[b-giorvs9l7a]::after,
  .sidebar.collapsed button[title]:hover[b-giorvs9l7a]::after {
    content: attr(title);
    position: absolute;
    left: calc(100% + 30px);
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
  }

  .sidebar.collapsed a[title]:hover[b-giorvs9l7a]::before,
  .sidebar.collapsed button[title]:hover[b-giorvs9l7a]::before {
    content: '';
    position: absolute;
    left: calc(100% + 22px);
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-right-color: #2c3e50;
    z-index: 1001;
    pointer-events: none;
  }

.sidebar.collapsed a.active[title]:hover[b-giorvs9l7a]::after {
  background: #13b0a6;
}

.sidebar.collapsed a.active[title]:hover[b-giorvs9l7a]::before {
  border-right-color: #13b0a6;
}

.sidebar.collapsed .logout-link[title]:hover[b-giorvs9l7a]::after {
  background: #dc3545;
}

.sidebar.collapsed .logout-link[title]:hover[b-giorvs9l7a]::before {
  border-right-color: #dc3545;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */
@media (max-width: 768px) {
  .sidebar[b-giorvs9l7a] {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .sidebar[b-giorvs9l7a] {
    width: 180px;
    padding: 1rem 0.25rem 1rem 0.5rem;
  }

  .sidebar a[b-giorvs9l7a],
  .login-button[b-giorvs9l7a],
  .signup-button[b-giorvs9l7a],
  .logout-link[b-giorvs9l7a] {
    padding: 0.75rem 0.25rem 0.75rem 0.5rem;
  }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-3jzh7vukvy],
.components-reconnect-repeated-attempt-visible[b-3jzh7vukvy],
.components-reconnect-failed-visible[b-3jzh7vukvy],
.components-pause-visible[b-3jzh7vukvy],
.components-resume-failed-visible[b-3jzh7vukvy],
.components-rejoining-animation[b-3jzh7vukvy] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-3jzh7vukvy],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-3jzh7vukvy],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-3jzh7vukvy],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-3jzh7vukvy],
#components-reconnect-modal.components-reconnect-retrying[b-3jzh7vukvy],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-3jzh7vukvy],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-3jzh7vukvy],
#components-reconnect-modal.components-reconnect-failed[b-3jzh7vukvy],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-3jzh7vukvy] {
    display: block;
}


#components-reconnect-modal[b-3jzh7vukvy] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-3jzh7vukvy 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-3jzh7vukvy 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-3jzh7vukvy 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-3jzh7vukvy]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-3jzh7vukvy 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-3jzh7vukvy {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-3jzh7vukvy {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-3jzh7vukvy {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-3jzh7vukvy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-3jzh7vukvy] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-3jzh7vukvy] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-3jzh7vukvy] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-3jzh7vukvy] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-3jzh7vukvy] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-3jzh7vukvy] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-3jzh7vukvy 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-3jzh7vukvy] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-3jzh7vukvy {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/ContentKeeperManagement.razor.rz.scp.css */
/* =============================================================================
     PRERENDER LOADING STATE
     ============================================================================= */
.workspace-management-loading[b-g63dobwzjr] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  z-index: 9998;
  animation: fadeIn-b-g63dobwzjr 0.3s ease-in;
}

.loading-overlay-content[b-g63dobwzjr] {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 320px;
  animation: slideUp-b-g63dobwzjr 0.4s ease-out;
}

.loading-spinner-large[b-g63dobwzjr] {
  width: 60px;
  height: 60px;
  border: 6px solid #e3e3e3;
  border-top: 6px solid #13b0a6;
  border-radius: 50%;
  animation: spin-b-g63dobwzjr 1s linear infinite;
  margin: 0 auto 1.5rem;
}

.loading-overlay-content h3[b-g63dobwzjr] {
  color: #2c3e50;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.loading-overlay-content p[b-g63dobwzjr] {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

@keyframes spin-b-g63dobwzjr {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn-b-g63dobwzjr {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp-b-g63dobwzjr {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================================
     INTERACTIVE LOADING OVERLAYS
     ============================================================================= */
.loading-overlay[b-g63dobwzjr] {
  position: absolute; /* Changed from fixed to absolute */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100; /* Reduced from 9999 to stay within component hierarchy */
}

.application-loading[b-g63dobwzjr] {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(5px);
}

.component-loading[b-g63dobwzjr] {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(3px);
}

.loading-content[b-g63dobwzjr] {
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.loading-text h5[b-g63dobwzjr] {
  color: #495057;
  font-weight: 600;
}

.loading-text p[b-g63dobwzjr] {
  color: #6c757d;
  font-size: 0.9rem;
}

/* =============================================================================
     CONTENT FADE-IN ANIMATION
     ============================================================================= */
.container-fluid[b-g63dobwzjr] {
  animation: contentFadeIn-b-g63dobwzjr 0.4s ease-out;
  position: relative; /* Added to contain absolute-positioned children */
  min-height: 400px; /* Ensure container has height for overlay positioning */
}

@keyframes contentFadeIn-b-g63dobwzjr {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================================
     RESPONSIVE DESIGN
     ============================================================================= */
@media (max-width: 768px) {
  .loading-overlay-content[b-g63dobwzjr] {
    min-width: 280px;
    padding: 2rem;
  }

  .loading-spinner-large[b-g63dobwzjr] {
    width: 50px;
    height: 50px;
    border-width: 5px;
  }

  .loading-overlay-content h3[b-g63dobwzjr] {
    font-size: 1.4rem;
  }

  .loading-overlay-content p[b-g63dobwzjr] {
    font-size: 0.95rem;
  }
}


/* /Components/Pages/ConversationPage.razor.rz.scp.css */
.conversation-page[b-gh45jbk14d] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f8f9fa;
}

.loading-container[b-gh45jbk14d],
.error-container[b-gh45jbk14d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem;
}

.error-container[b-gh45jbk14d] {
    max-width: 600px;
    margin: 0 auto;
}

.conversation-header[b-gh45jbk14d] {
    background-color: white;
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem 0;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.conversation-header h2[b-gh45jbk14d] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.conversation-header .btn-link[b-gh45jbk14d] {
    color: #6c757d;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.conversation-header .btn-link:hover[b-gh45jbk14d] {
    color: #0d6efd;
}

.conversation-body[b-gh45jbk14d] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.conversation-body[b-gh45jbk14d]  .thread-turn-list-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.badge[b-gh45jbk14d] {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .conversation-header h2[b-gh45jbk14d] {
        font-size: 1.5rem;
    }

    .conversation-header .row[b-gh45jbk14d] {
        flex-direction: column;
        gap: 1rem;
    }

    .conversation-header .col-auto[b-gh45jbk14d] {
        width: 100%;
    }

    .conversation-header .d-flex[b-gh45jbk14d] {
        justify-content: flex-start;
    }
}

/* Alert styling enhancements */
.alert-heading[b-gh45jbk14d] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.alert .btn[b-gh45jbk14d] {
    font-size: 0.95rem;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* =============================================================================
   HOME PAGE CONTAINER
   ============================================================================= */
.home-container[b-0fqznu67gk] {
  width: 100%;
  min-height: 100vh;
  animation: fadeIn-b-0fqznu67gk 0.6s ease-in forwards;
  animation-fill-mode: both;
}

@keyframes fadeIn-b-0fqznu67gk {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero-section[b-0fqznu67gk] {
  background: linear-gradient(135deg, #13b0a6 0%, #0f9689 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown-b-0fqznu67gk 0.8s ease-out forwards;
  animation-fill-mode: both;
}

@keyframes slideDown-b-0fqznu67gk {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-content[b-0fqznu67gk] {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title[b-0fqznu67gk] {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle[b-0fqznu67gk] {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-description[b-0fqznu67gk] {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* New CSS for Hero Title Image */
.hero-title-image[b-0fqznu67gk] {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Add this to center the image */
}

/* Tablet and smaller */
@media (max-width: 768px) {
  .hero-title-image[b-0fqznu67gk] {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .hero-title-image[b-0fqznu67gk] {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* =============================================================================
   HIERARCHY FLOW SECTION
   ============================================================================= */
.hierarchy-flow-section[b-0fqznu67gk] {
  background: #f8f9fa;
  padding: 3rem 2rem;
  text-align: center;
}

.section-title[b-0fqznu67gk] {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}

.hierarchy-flow[b-0fqznu67gk] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: slideIn-b-0fqznu67gk 1s ease-out 0.2s forwards;
  animation-fill-mode: both;
}

@keyframes slideIn-b-0fqznu67gk {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.flow-step[b-0fqznu67gk] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 120px;
}

.flow-step:hover[b-0fqznu67gk] {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.flow-step i[b-0fqznu67gk] {
  font-size: 2rem;
}

.flow-step span[b-0fqznu67gk] {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2c3e50;
}

.flow-arrow[b-0fqznu67gk] {
  color: #13b0a6;
  font-size: 1.5rem;
}

/* Flow step colors */
.flow-step.workspace[b-0fqznu67gk] {
  border-top: 4px solid #13b0a6;
}

.flow-step.workspace i[b-0fqznu67gk] {
  color: #13b0a6;
}

.flow-step.project[b-0fqznu67gk] {
  border-top: 4px solid #f093fb;
}

.flow-step.project i[b-0fqznu67gk] {
  color: #f093fb;
}

.flow-step.thread[b-0fqznu67gk] {
  border-top: 4px solid #4facfe;
}

.flow-step.thread i[b-0fqznu67gk] {
  color: #4facfe;
}

.flow-step.turn[b-0fqznu67gk] {
  border-top: 4px solid #43e97b;
}

.flow-step.turn i[b-0fqznu67gk] {
  color: #43e97b;
}

.flow-step.asset[b-0fqznu67gk] {
  border-top: 4px solid #fa709a;
}

.flow-step.asset i[b-0fqznu67gk] {
  color: #fa709a;
}

/* =============================================================================
   HIERARCHY CARDS SECTION
   ============================================================================= */
.hierarchy-cards-section[b-0fqznu67gk] {
  padding: 4rem 2rem;
  background: white;
}

.hierarchy-cards[b-0fqznu67gk] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hierarchy-card[b-0fqznu67gk] {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid;
  position: relative;
  animation: fadeInUp-b-0fqznu67gk 0.6s ease-out both;
}

@keyframes fadeInUp-b-0fqznu67gk {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hierarchy-card:nth-child(1)[b-0fqznu67gk] { animation-delay: 0.1s; }
.hierarchy-card:nth-child(2)[b-0fqznu67gk] { animation-delay: 0.2s; }
.hierarchy-card:nth-child(3)[b-0fqznu67gk] { animation-delay: 0.3s; }
.hierarchy-card:nth-child(4)[b-0fqznu67gk] { animation-delay: 0.4s; }
.hierarchy-card:nth-child(5)[b-0fqznu67gk] { animation-delay: 0.5s; }

.hierarchy-card:hover[b-0fqznu67gk] {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.workspace-card[b-0fqznu67gk] { border-top-color: #13b0a6; }
.project-card[b-0fqznu67gk] { border-top-color: #f093fb; }
.thread-card[b-0fqznu67gk] { border-top-color: #4facfe; }
.turn-card[b-0fqznu67gk] { border-top-color: #43e97b; }
.asset-card[b-0fqznu67gk] { border-top-color: #fa709a; }

.card-icon[b-0fqznu67gk] {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.workspace-icon[b-0fqznu67gk] { background: linear-gradient(135deg, #13b0a6 0%, #0f9689 100%); }
.project-icon[b-0fqznu67gk] { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.thread-icon[b-0fqznu67gk] { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.turn-icon[b-0fqznu67gk] { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.asset-icon[b-0fqznu67gk] { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.card-title[b-0fqznu67gk] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.card-description[b-0fqznu67gk] {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 1rem;
}

.card-badge[b-0fqznu67gk] {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #13b0a6;
  margin-top: 0.5rem;
}

/* =============================================================================
   BENEFITS SECTION
   ============================================================================= */
.benefits-section[b-0fqznu67gk] {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 2rem;
}

.benefits-grid[b-0fqznu67gk] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card[b-0fqznu67gk] {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp-b-0fqznu67gk 0.6s ease-out both;
}

.benefit-card:nth-child(1)[b-0fqznu67gk] { animation-delay: 0.1s; }
.benefit-card:nth-child(2)[b-0fqznu67gk] { animation-delay: 0.2s; }
.benefit-card:nth-child(3)[b-0fqznu67gk] { animation-delay: 0.3s; }
.benefit-card:nth-child(4)[b-0fqznu67gk] { animation-delay: 0.4s; }
.benefit-card:nth-child(5)[b-0fqznu67gk] { animation-delay: 0.5s; }

.benefit-card:hover[b-0fqznu67gk] {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon[b-0fqznu67gk] {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #13b0a6 0%, #0f9689 100%);
  color: white;
  font-size: 1.8rem;
}

.benefit-card h3[b-0fqznu67gk] {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-card p[b-0fqznu67gk] {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

/* =============================================================================
   ACTIONS SECTION
   ============================================================================= */
.actions-section[b-0fqznu67gk] {
  background: white;
  padding: 4rem 2rem;
}

.actions-grid[b-0fqznu67gk] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.action-card[b-0fqznu67gk] {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp-b-0fqznu67gk 0.6s ease-out both;
}

.action-card:nth-child(1)[b-0fqznu67gk] { animation-delay: 0.1s; }
.action-card:nth-child(2)[b-0fqznu67gk] { animation-delay: 0.2s; }
.action-card:nth-child(3)[b-0fqznu67gk] { animation-delay: 0.3s; }
.action-card:nth-child(4)[b-0fqznu67gk] { animation-delay: 0.4s; }

.action-card:hover[b-0fqznu67gk] {
  border-color: #13b0a6;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(19, 176, 166, 0.15);
}

.action-icon[b-0fqznu67gk] {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #13b0a6 0%, #0f9689 100%);
  color: white;
  font-size: 1.8rem;
}

.action-card h3[b-0fqznu67gk] {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.action-card p[b-0fqznu67gk] {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

/* =============================================================================
   PROMISE SECTION
   ============================================================================= */
.promise-section[b-0fqznu67gk] {
  background: linear-gradient(135deg, #13b0a6 0%, #0f9689 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.promise-content[b-0fqznu67gk] {
  max-width: 800px;
  margin: 0 auto;
}

.promise-icon[b-0fqznu67gk] {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: pulse-b-0fqznu67gk 2s ease-in-out infinite;
}

@keyframes pulse-b-0fqznu67gk {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.promise-section h2[b-0fqznu67gk] {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.promise-section p[b-0fqznu67gk] {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

/* Tablets */
@media (max-width: 992px) {
  .hero-title[b-0fqznu67gk] {
    font-size: 2.5rem;
  }
  
  .hero-subtitle[b-0fqznu67gk] {
    font-size: 1.2rem;
  }
  
  .hierarchy-flow[b-0fqznu67gk] {
    flex-direction: column;
  }
  
  .flow-arrow[b-0fqznu67gk] {
    transform: rotate(90deg);
  }
  
  .hierarchy-cards[b-0fqznu67gk] {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section[b-0fqznu67gk] {
    padding: 3rem 1.5rem;
  }
  
  .hero-title[b-0fqznu67gk] {
    font-size: 2rem;
  }
  
  .hero-subtitle[b-0fqznu67gk] {
    font-size: 1.1rem;
  }
  
  .hero-description[b-0fqznu67gk] {
    font-size: 1rem;
  }
  
  .section-title[b-0fqznu67gk] {
    font-size: 1.6rem;
  }
  
  .hierarchy-flow-section[b-0fqznu67gk],
  .hierarchy-cards-section[b-0fqznu67gk],
  .benefits-section[b-0fqznu67gk],
  .actions-section[b-0fqznu67gk],
  .promise-section[b-0fqznu67gk] {
    padding: 2.5rem 1.5rem;
  }
  
  .hierarchy-cards[b-0fqznu67gk],
  .benefits-grid[b-0fqznu67gk],
  .actions-grid[b-0fqznu67gk] {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .flow-step[b-0fqznu67gk] {
    min-width: 100px;
    padding: 1rem 1.5rem;
  }
  
  .card-title[b-0fqznu67gk],
  .benefit-card h3[b-0fqznu67gk],
  .action-card h3[b-0fqznu67gk] {
    font-size: 1.2rem;
  }
  
  .promise-section h2[b-0fqznu67gk] {
    font-size: 1.6rem;
  }
  
  .promise-section p[b-0fqznu67gk] {
    font-size: 1rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title[b-0fqznu67gk] {
    font-size: 1.8rem;
  }
  
  .card-icon[b-0fqznu67gk],
  .benefit-icon[b-0fqznu67gk],
  .action-icon[b-0fqznu67gk] {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .flow-step i[b-0fqznu67gk] {
    font-size: 1.5rem;
  }
  
  .promise-icon[b-0fqznu67gk] {
    font-size: 2.5rem;
  }
}

/* Add a class to track if animations have played */
.animations-completed .home-container[b-0fqznu67gk],
.animations-completed .hero-section[b-0fqznu67gk],
.animations-completed .hierarchy-flow[b-0fqznu67gk],
.animations-completed .hierarchy-card[b-0fqznu67gk],
.animations-completed .benefit-card[b-0fqznu67gk],
.animations-completed .action-card[b-0fqznu67gk] {
  animation: none;
}
/* /Components/ProjectGrid.razor.rz.scp.css */
/* =============================================================================
   ProjectGrid - Scrollable Container Styling
   ============================================================================= */

/* Scrollable table wrapper with max-height of 300px */
.project-scrollable[b-0koapl6v2d] {
  max-height: 300px;
  overflow-x: auto;
  overflow-y: auto;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}

/* Table styling within scrollable container */
.project-scrollable .table[b-0koapl6v2d] {
  margin-bottom: 0; /* Remove default table margin */
}

/* Sticky table header */
.project-scrollable thead[b-0koapl6v2d] {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1);
}

/* Table column sizing */
.table th[b-0koapl6v2d],
.table td[b-0koapl6v2d] {
  vertical-align: middle;
}

/* Project name column */
.table th:first-child[b-0koapl6v2d],
.table td:first-child[b-0koapl6v2d] {
  min-width: 150px;
  max-width: 250px;
}

/* Status column */
.table .badge[b-0koapl6v2d] {
  white-space: nowrap;
}

/* Digital Asset column */
.table td .d-flex[b-0koapl6v2d] {
  flex-wrap: nowrap;
  gap: 0.25rem;
}

/* Action buttons column */
.table .btn-group[b-0koapl6v2d] {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
}

.table .btn-group .btn[b-0koapl6v2d] {
  flex: 0 0 auto;
  min-width: 32px;
  padding: 0.25rem 0.4rem;
}

/* Hover effect for table rows */
.table-hover tbody tr[b-0koapl6v2d] {
  transition: background-color 0.15s ease-in-out;
}

.table-hover tbody tr:hover[b-0koapl6v2d] {
  background-color: rgba(19, 176, 166, 0.05);
}

/* Active row highlight */
.table-active[b-0koapl6v2d] {
  background-color: rgba(19, 176, 166, 0.1) !important;
}

/* Empty state styling */
.text-center.text-muted[b-0koapl6v2d] {
  padding: 2rem 1rem;
}

/* Responsive adjustments */
@@media (max-width: 768px) {
  .project-scrollable[b-0koapl6v2d] {
    max-height: 250px; /* Slightly shorter on mobile */
  }

  .table th[b-0koapl6v2d],
  .table td[b-0koapl6v2d] {
    font-size: 0.875rem;
    padding: 0.5rem 0.25rem;
  }

  .table .btn-group .btn[b-0koapl6v2d] {
    min-width: 28px;
    padding: 0.2rem 0.3rem;
    font-size: 0.75rem;
  }
}
/* /Components/ThreadTurnList.razor.rz.scp.css */
.thread-turn-list-container[b-v8fxk7nc8u] {
  position: relative;
}

.processing-overlay[b-v8fxk7nc8u] {
  position: fixed; /* Changed from absolute to fixed */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3); /* Reduced opacity to 30% for visible background */
  backdrop-filter: blur(2px); /* Reduced blur for better visibility */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 0;
}

.processing-content[b-v8fxk7nc8u] {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  animation: fadeIn-b-v8fxk7nc8u 0.3s ease-in;
}

@keyframes fadeIn-b-v8fxk7nc8u {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.processing-text h5[b-v8fxk7nc8u] {
  color: #495057;
  font-weight: 600;
}

.processing-text p[b-v8fxk7nc8u] {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Ensure the container has some minimum height */
.thread-turn-content[b-v8fxk7nc8u] {
  min-height: 300px;
}

/* Button layout styling */
.process-button-container[b-v8fxk7nc8u] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.button-row[b-v8fxk7nc8u] {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.process-turns-btn[b-v8fxk7nc8u],
.save-context-btn[b-v8fxk7nc8u] {
  flex: 1;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.save-context-btn[b-v8fxk7nc8u] {
  background-color: #198754;
  border-color: #198754;
}

  .save-context-btn:hover:not(:disabled)[b-v8fxk7nc8u] {
    background-color: #157347;
    border-color: #146c43;
  }

  .save-context-btn:disabled[b-v8fxk7nc8u] {
    opacity: 0.6;
  }

/* Token usage display styling */
.token-usage-display[b-v8fxk7nc8u] {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.token-usage-display.clickable[b-v8fxk7nc8u] {
  cursor: pointer;
  user-select: none;
}

.token-usage-display.clickable[b-v8fxk7nc8u]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 110, 253, 0);
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
  pointer-events: none;
  z-index: 1;
}

.token-usage-display.clickable:hover[b-v8fxk7nc8u]::before {
  background-color: rgba(13, 110, 253, 0.08);
}

.token-usage-display.clickable:active[b-v8fxk7nc8u]::before {
  background-color: rgba(13, 110, 253, 0.15);
}

.token-usage-display.clickable:hover[b-v8fxk7nc8u] {
  border-color: #b3d9ff;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.15);
  transform: translateY(-1px);
}

.token-usage-display.clickable:active[b-v8fxk7nc8u] {
  transform: translateY(0);
}

/* Ensure content stays above the overlay */
.token-usage-display.clickable *[b-v8fxk7nc8u] {
  position: relative;
  z-index: 2;
}

.token-details[b-v8fxk7nc8u] {
  color: #6c757d;
  font-size: 0.85em;
}

/* AI settings display styling */
.ai-settings-display[b-v8fxk7nc8u] {
  background-color: #e7f3ff;
  border: 1px solid #b3d9ff;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.ai-settings-display.clickable[b-v8fxk7nc8u] {
  cursor: pointer;
  user-select: none;
}

.ai-settings-display.clickable[b-v8fxk7nc8u]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 110, 253, 0);
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
  pointer-events: none;
  z-index: 1;
}

.ai-settings-display.clickable:hover[b-v8fxk7nc8u]::before {
  background-color: rgba(13, 110, 253, 0.08);
}

.ai-settings-display.clickable:active[b-v8fxk7nc8u]::before {
  background-color: rgba(13, 110, 253, 0.15);
}

.ai-settings-display.clickable:hover[b-v8fxk7nc8u] {
  background-color: #d0e9ff;
  border-color: #80c1ff;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.15);
  transform: translateY(-1px);
}

.ai-settings-display.clickable:active[b-v8fxk7nc8u] {
  transform: translateY(0);
}

.ai-settings-display.clickable:hover .bi-pencil-square[b-v8fxk7nc8u] {
  color: #0d6efd;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* Ensure content stays above the overlay */
.ai-settings-display.clickable *[b-v8fxk7nc8u] {
  position: relative;
  z-index: 2;
}
/* /Components/TokenUsageHistoryModal.razor.rz.scp.css */
/* =============================================================================
   TOKEN USAGE HISTORY MODAL STYLES
   ============================================================================= */

/* Modal backdrop */
.modal-backdrop[b-j4xgbdniua] {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content */
.modal-xl[b-j4xgbdniua] {
  max-width: 1140px;
}

/* Clickable token usage display */
.token-usage-display.clickable[b-j4xgbdniua] {
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.5rem;
  border-radius: 0.25rem;
  background-color: transparent;
}

.token-usage-display.clickable:hover[b-j4xgbdniua] {
  background-color: rgba(19, 176, 166, 0.1);
  transform: translateY(-1px);
}

.token-usage-display.clickable:active[b-j4xgbdniua] {
  transform: translateY(0);
}

/* Token usage cards */
.token-usage-display .card[b-j4xgbdniua] {
  transition: all 0.3s ease;
}

.token-usage-display .card:hover[b-j4xgbdniua] {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table styles for token history */
.table-container[b-j4xgbdniua] {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.table-hover tbody tr[b-j4xgbdniua] {
  transition: background-color 0.2s ease;
}

.table-hover tbody tr:hover[b-j4xgbdniua] {
  background-color: rgba(0, 0, 0, 0.025);
}

/* Sticky header and footer for scrollable table */
.sticky-header[b-j4xgbdniua] {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #f8f9fa !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sticky-footer[b-j4xgbdniua] {
  position: sticky;
  bottom: 0;
  z-index: 10;
  background-color: #f8f9fa !important;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.table-container .table[b-j4xgbdniua] {
  margin-bottom: 0;
}

/* Custom scrollbar for table container */
.table-container[b-j4xgbdniua]::-webkit-scrollbar {
  width: 8px;
}

.table-container[b-j4xgbdniua]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.table-container[b-j4xgbdniua]::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.table-container[b-j4xgbdniua]::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Status badge animations */
.badge[b-j4xgbdniua] {
  transition: all 0.2s ease;
}

/* Monospace font for IDs */
.font-monospace[b-j4xgbdniua] {
  font-family: 'Courier New', Courier, monospace;
}

/* Alert styles */
.alert-sm[b-j4xgbdniua] {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Icon animations */
.bi-cpu-fill[b-j4xgbdniua],
.bi-arrow-down-circle-fill[b-j4xgbdniua],
.bi-arrow-up-circle-fill[b-j4xgbdniua] {
  transition: transform 0.3s ease;
}

.card:hover .bi-cpu-fill[b-j4xgbdniua],
.card:hover .bi-arrow-down-circle-fill[b-j4xgbdniua],
.card:hover .bi-arrow-up-circle-fill[b-j4xgbdniua] {
  transform: scale(1.1);
}

/* Table row status colors */
.table-danger[b-j4xgbdniua] {
  background-color: rgba(220, 53, 69, 0.1) !important;
}

.table-warning[b-j4xgbdniua] {
  background-color: rgba(255, 193, 7, 0.1) !important;
}

/* Button hover effects in table */
.btn-outline-primary:hover[b-j4xgbdniua],
.btn-outline-warning:hover[b-j4xgbdniua] {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Modal header styling */
.modal-header[b-j4xgbdniua] {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

.modal-title[b-j4xgbdniua] {
  color: #333;
  font-weight: 600;
}

/* Statistics row */
.alert-light[b-j4xgbdniua] {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}

/* Footer spacing */
.modal-footer[b-j4xgbdniua] {
  background-color: #f8f9fa;
  border-top: 2px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-xl[b-j4xgbdniua] {
    max-width: 95%;
    margin: 1rem auto;
  }

  .card-body h3[b-j4xgbdniua] {
    font-size: 1.5rem;
  }

  .table[b-j4xgbdniua] {
    font-size: 0.875rem;
  }
  
  .token-usage-display .token-details[b-j4xgbdniua] {
    display: block;
    margin-top: 0.25rem;
  }
}

/* Ensure proper stacking of modal */
.modal[b-j4xgbdniua] {
  z-index: 1050;
}

.modal-backdrop[b-j4xgbdniua] {
  z-index: 1040;
}

/* Legend list styling */
ul.list-unstyled li[b-j4xgbdniua] {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

ul.list-unstyled li .badge[b-j4xgbdniua] {
  min-width: 80px;
  justify-content: center;
}

/* Action button spacing */
.btn-sm[b-j4xgbdniua] {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

/* Highlight selected row (if navigation is implemented) */
tr.selected-turn[b-j4xgbdniua] {
  background-color: rgba(13, 110, 253, 0.1) !important;
  border-left: 3px solid #0d6efd;
}
/* /Components/WebCrawlerModal.razor.rz.scp.css */
.modal-90vw[b-npptvmvkw8] {
  max-width: 90vw;
  width: 90vw;
  margin: 0 auto;
}

/* Spinning animation for crawling icon */
@keyframes spin-b-npptvmvkw8 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spin-animation[b-npptvmvkw8] {
    animation: spin-b-npptvmvkw8 2s linear infinite;
}

/* Dots animation for loading text */
.dots-animation[b-npptvmvkw8]::after {
    content: '';
    animation: dots-b-npptvmvkw8 1.5s steps(4, end) infinite;
}

@keyframes dots-b-npptvmvkw8 {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

/* Discovered pages preview styling */
.discovered-pages-preview[b-npptvmvkw8] {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  overflow: hidden;
}

.discovered-pages-preview table[b-npptvmvkw8] {
  margin-bottom: 0;
}

.discovered-pages-preview thead[b-npptvmvkw8] {
  background-color: #f8f9fa;
  position: sticky;
  top: 0;
  z-index: 10;
}

.discovered-pages-preview tbody tr:hover[b-npptvmvkw8] {
  background-color: #f8f9fa;
}

.discovered-pages-preview .text-truncate[b-npptvmvkw8] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
