div#geniq-dashboard-container {
    height: 100%;
    overflow: auto;
}

.custom-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  background: #fff;
  height: 120px;
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #3f51b5;
  width: 40px;
  flex-shrink: 0;
}

.divider {
  height: 100%;
  width: 1px;
  background-color: #ddd;
  margin: 0 15px;
}

.text-container {
  text-align: center;
}

.text-container .respo_number {
  font-size: 20px;
  font-weight: bold;
  color: var(--theme-color);
}

.text-container .respo_label {
  font-size: 18px;
  color: var(--theme-color);
}

.custom-card .agent-icon,
.custom-card .caching-icon,
.custom-card .collection-icon,
.custom-card .guardrails-icon{
    width: 80px;
    height: 50px;
    background-color: var(--theme-color);
}

.custom-card .agent-icon{
  -webkit-mask: url('/o/geniq-dashboard/images/geniq-platform/agents.svg') no-repeat center;
  mask: url('/o/geniq-dashboard/images/geniq-platform/agents.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.custom-card .caching-icon{
  -webkit-mask: url('/o/geniq-dashboard/images/geniq-platform/caching.svg') no-repeat center;
  mask: url('/o/geniq-dashboard/images/geniq-platform/caching.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.custom-card .collection-icon{
  -webkit-mask: url('/o/geniq-dashboard/images/geniq-platform/collection.png') no-repeat center;
  mask: url('/o/geniq-dashboard/images/geniq-platform/collection.png') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.custom-card .guardrails-icon{
  -webkit-mask: url('/o/geniq-dashboard/images/geniq-platform/guardrails.svg') no-repeat center;
  mask: url('/o/geniq-dashboard/images/geniq-platform/guardrails.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

 .main-wrapper {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 40px auto;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-custom {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 15px;
  min-height: 250px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-card {
    flex: 1 1 calc(25% - 16px); /* 4 cards per row, adjust for gap */
}

.badge-completed {
  background-color: green;
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  min-width: 90px;
  justify-content: center;
}
.badge-inprogress {
  background-color: #fb7e3b;
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  min-width: 90px;
  justify-content: center;
}

.badge-notstarted {
  background-color: #FFCC00;
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  min-width: 90px;
  justify-content: center;
}

.badge-failed {
  background-color: #DC2525;
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  min-width: 90px;
  justify-content: center;
}

.repo-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.repo-item:last-child {
  border-bottom: none;
}

.no-details {
  color: #d9534f;
  text-align: center;
  margin-top: 80px;
}

div#dashboard-collection-section.repo-item-container {
    height: 50vh;
    width: 100%;
    overflow: auto;
}

#inference-chart-section{
    height:50vh;
}

/* scrolling */

::-webkit-scrollbar {
    height: 5px;
    width: 5px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    -webkit-border-radius: 1ex;
    /* -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75); */
}

/* Portlet Height css start and scrolling */

.portlet-layout.row ,
.portlet-column,
.portlet-column-content,
.portlet-boundary_GenIQDashboard_,
.portlet,
.portlet-content,
.portlet-content-container{
    height: 100%;
}