body {
  background-color: #076b0cff;
}

body.hero-page {
  background-color: #333 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
}

/* Override for headers inside cards and white backgrounds */
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
  color: #212529;
}

.svg-icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  display: none !important;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.nav-link {
  color: rgba(255, 255, 255, 0.55) !important;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

.nav-link.active {
  color: white !important;
}

.bi {
  fill: currentColor;
}

/* Dashboard specific styles */
.stat-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 3rem;
  opacity: 0.2;
  position: absolute;
  right: 20px;
  top: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.bg-draft {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
}

.bg-submitted {
  background: linear-gradient(135deg, #ffe68a 0%, #ffc107 100%);
  color: #212529;
}

.bg-authorized {
  background: linear-gradient(135deg, #0dcaf0 0%, #0891b2 100%);
  color: white;
}

.bg-signed {
  background: linear-gradient(135deg, #198754 0%, #146c43 100%);
  color: white;
}

.bg-revoked {
  background: linear-gradient(135deg, #dc3545 0%, #bb2d3b 100%);
  color: white;
}

.bg-expiring {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: white;
}

.request-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.badge-status {
  padding: 0.5em 1em;
  font-size: 0.75rem;
}

.inbox-icon {
  font-size: 2rem;
}

/* Blended Product Detail */
.product-logo {
  max-height: 150px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 8px;
  padding: 8px;
  display: inline-block;
}

/* Blended Product List */
.blend-logo {
  max-height: 120px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 8px;
  padding: 8px;
  display: inline-block;
}

.blend-description {
  max-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Create/Edit Blended Product */
.edit-logo {
  max-height: 100px;
  max-width: 200px;
}

/* Manage Blend Statements */
.blend-ai-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.blend-statements-header {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.blend-statements-body {
  max-height: 800px;
  overflow-y: auto;
}

.blend-selected-card {
  top: 20px;
}

.blend-selected-header {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.blend-selected-body {
  max-height: 600px;
  overflow-y: auto;
}

/* Tag Request Kanban Board */
.kanban-container {
  padding: 20px 0;
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.kanban-column {
  background-color: #f8f9fa;
  border-radius: 8px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.kanban-column-header {
  padding: 15px;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kanban-column-header h4 {
  display: flex;
  align-items: center;
}

.kanban-cards {
  padding: 15px;
  flex-grow: 1;
  overflow-y: auto;
  max-height: calc(100vh - 300px);
}

.kanban-card {
  background: white;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.kanban-card .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.kanban-card .card-header {
  padding: 10px 15px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  border-radius: 6px 6px 0 0;
}

.kanban-card .card-body {
  padding: 15px;
}

.kanban-card .card-title {
  font-weight: bold;
  color: #212529;
  margin-bottom: 10px;
}

.kanban-card .card-text {
  font-size: 0.9rem;
  color: #495057;
  margin-bottom: 8px;
}

.kanban-card .card-text:last-child {
  margin-bottom: 0;
}

.empty-column {
  text-align: center;
  padding: 40px 20px;
}

/* Responsive design for Kanban */
@media (max-width: 1400px) {
  .kanban-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kanban-board {
    grid-template-columns: 1fr;
  }

  .kanban-cards {
    max-height: 400px;
  }
}

/* Tag Request Detail Status Flow */
.status-flow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.status-flow::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #dee2e6;
  z-index: 0;
}

.status-block {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.status-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e9ecef;
  border: 3px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 24px;
  color: #6c757d;
}

.status-block.active .status-circle {
  background: #0d6efd;
  border-color: #0d6efd;
  color: white;
}

.status-block.completed .status-circle {
  background: #198754;
  border-color: #198754;
  color: white;
}

.status-block.revoked .status-circle {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
}

/* Logout button text size */
.logout-btn-text {
  font-size: 0.75rem;
}

.hero-section {
  /* Replace with the actual image URL from their assets */
  background-color: #333;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/hero-home.d500607baf80.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 80vh;
  /* Adjust height based on your layout */
  display: flex;
  align-items: center;
  color: #ffffff;
}