/* ============================================================
   Home Dashboard
   ============================================================ */
.home-dashboard {
  background: var(--body-bg);
  padding: 32px 24px 48px;
}

.home-dashboard-shell:has(.home-dashboard:not(.home-dashboard--server)) .home-dashboard--server {
  display: none;
}

.home-dashboard__spinner {
  display: flex;
  justify-content: center;
  padding: 64px 0;
}

.home-dashboard__hero {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 40px;
  padding-top: 48px;
  text-align: center;
}

.home-dashboard__hero .home-dashboard__hero-title {
  color: var(--body-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.home-dashboard__hero .home-dashboard__hero-subtitle {
  color: var(--secondary);
  font-size: var(--font-size-base, 1rem);
  margin-bottom: 24px;
  max-width: 480px;
}

.home-dashboard__hero .home-dashboard__hero-btn {
  font-size: var(--font-size-base, 1rem);
  font-weight: 600;
  padding: 10px 24px;
}

.home-dashboard__section {
  margin-top: 40px;
}

.home-dashboard__section-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.home-dashboard__section-title {
  color: var(--body-color);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.home-dashboard__section-link {
  color: var(--primary);
  font-size: var(--font-size-sm, 0.875rem);
  text-decoration: none;
}

.home-dashboard__section-link:hover {
  color: var(--primary-d1, var(--primary));
  text-decoration: underline;
}

.home-dashboard__section-message {
  font-size: var(--font-size-sm, 0.875rem);
  padding: 12px 0;
}

.home-dashboard__cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .home-dashboard__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .home-dashboard__cards {
    grid-template-columns: 1fr;
  }
}
.dashboard-card {
  background: var(--body-bg);
  border: 1px solid var(--gray-300, #e7e7ed);
  border-radius: var(--border-radius-lg, 8px);
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.dashboard-card:hover {
  border-color: var(--primary-l2, #a7b4e7);
  box-shadow: var(--box-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.08));
  color: inherit;
  text-decoration: none;
}

.dashboard-card__header {
  align-items: flex-start;
  display: flex;
}

.dashboard-card__icon {
  align-items: center;
  background: var(--blue-l5, #ebf1ff);
  border-radius: var(--border-radius, 6px);
  color: var(--blue-d1, #3e6de5);
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.dashboard-card__icon .lexicon-icon {
  height: 20px;
  width: 20px;
}

.dashboard-card__body {
  flex: 1;
}

.dashboard-card__title {
  color: var(--body-color);
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 0;
}

.dashboard-card__description {
  -webkit-box-orient: vertical;
  color: var(--secondary);
  display: -webkit-box;
  font-size: var(--font-size-xs, 0.75rem);
  -webkit-line-clamp: 2;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
}

.dashboard-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dashboard-card--skeleton {
  cursor: default;
  pointer-events: none;
}

.dashboard-card__skeleton-icon {
  animation: dashboard-card-skeleton-pulse 1.4s ease-in-out infinite;
  background: var(--light, #f1f2f5);
  border-radius: var(--border-radius, 6px);
  height: 40px;
  width: 40px;
}

.dashboard-card__skeleton-line {
  animation: dashboard-card-skeleton-pulse 1.4s ease-in-out infinite;
  background: var(--light, #f1f2f5);
  border-radius: var(--border-radius-sm, 4px);
  height: 12px;
}

.dashboard-card__skeleton-line--title {
  width: 70%;
}

.dashboard-card__skeleton-line--desc {
  height: 20px;
  width: 100%;
}

.dashboard-card__skeleton-line--tags {
  width: 50%;
}

@keyframes dashboard-card-skeleton-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.ai-hub-tabs .component-tabs > .navbar {
  padding-left: 30px;
}

.agent-definition-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.agent-definition-item__description, .agent-definition-item__model {
  font-weight: initial;
  margin: 0;
}
.agent-definition-item__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.agent-definition-item__labels .label {
  text-transform: none;
}

.ai-hub-issue-reports-content {
  padding-left: 30px;
  padding-right: 30px;
}
.ai-hub-issue-reports-content .issue-reports-user-activity {
  margin-top: 1.5rem;
}

.ai-hub-issue-reports-table .table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider),
.ai-hub-issue-reports-table .table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td,
.ai-hub-issue-reports-table .table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) th {
  background-color: transparent;
}
.ai-hub-issue-reports-table .table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
.ai-hub-issue-reports-table .table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td,
.ai-hub-issue-reports-table .table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th {
  background-color: transparent;
}

/**
 * Clay 3.165.0
 *
 * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
 * SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */
/**
 * Bootstrap v4.4.1
 *
 * SPDX-FileCopyrightText: © 2019 Twitter, Inc. <https://twitter.com>
 * SPDX-FileCopyrightText: © 2019 The Bootstrap Authors <https://getbootstrap.com/>
 *
 * SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
 */
.lfr-tooltip-scope + .table-root .fds-info-panel {
  top: -72px;
}

.ai-hub .component-tabs > .navbar {
  padding-left: 30px;
}

.ai-hub-container {
  padding: 95px 150px !important;
}

@media (max-width: 991.98px) {
  .ai-hub-container {
    padding: 95px 50px !important;
  }
}
.bg-gradient--blue-white {
  background-image: linear-gradient(180deg, #e9f0ff 1.25%, #fff 30%);
}

.bg-gradient--dotted {
  background-image: radial-gradient(circle, #e1e2e4 1.5px, transparent 1.5px), linear-gradient(100deg, rgba(238, 244, 255, 0.17) 3.5%, #f5f5f5 46%, #fff 88.5%);
  background-position: top left, center;
  background-size: 16px 16px, 100% 100%;
}

.bg-gradient--dotted-blur {
  background-image: radial-gradient(circle, #e1e2e4 1.5px, transparent 1.5px), linear-gradient(100deg, rgba(216, 216, 216, 0.17) 3.6%, #f8faff 46%, rgba(234, 247, 255, 0.46) 88.5%);
  background-position: top left, center;
  background-size: 16px 16px, 100% 100%;
}

.ai-hub h1,
.ai-hub h2,
.ai-hub h3,
.ai-hub h4,
.ai-hub h5,
.ai-hub h6 {
  margin: 0;
}

.ai-hub .ai-hub-home-title {
  font-size: 3.5rem;
  font-weight: 800;
}

.ai-hub-gif,
.ai-hub-gif img {
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2509803922);
}

.ai-hub-section-header {
  height: 7.625rem;
}

.ai-hub p {
  margin: 0;
}