@layer components {
  .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .line-clamp-10 {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
} 
[x-cloak] { display: none !important; }

/* Icon circles on the card divider line */
.pp-icon-blue {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #5b9cf6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-icon-orange {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #f5893a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Horizontal rule with a centered icon sitting on top of it */
.pp-icon-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 32px 20px;
}

.pp-icon-divider hr {
  width: 100%;
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0;
}

.pp-icon-divider-inner {
  position: absolute;
  background: #fff;
  padding: 0 8px;
}

/* Small circular icon wrapper used in the calls / submissions rows */
.pp-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Horizontal bar chart */
.pp-bar-track {
  flex: 1;
  height: 22px;
  background: #f3f4f6;
  border-radius: 3px;
  position: relative;
  overflow: visible; /* allows tooltip to appear outside track bounds */
}

.pp-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #93c5fd;
  border-radius: 3px;
  overflow: visible; /* let tooltip escape the fill boundary */
}

.pp-bar-grid-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: #e5e7eb;
  pointer-events: none;
}

/* Apply button — navy #1e3a6e is not in the default Tailwind palette */
.pp-btn-apply {
  background-color: #1e3a6e;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.pp-btn-apply:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pp-btn-apply:not(:disabled):hover {
  background-color: #1a3260;
}

/* Selected month cell in the month-picker grid */
.pp-month-selected {
  background: #1e3a6e !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
}

/* Table view */
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.pp-table thead tr {
  background-color: #dbeafe; /* blue-100 */
}
.pp-table thead th {
  padding: 10px 16px;
  font-weight: 600;
  color: #374151;
}
.pp-table thead th:first-child { border-radius: 6px 0 0 6px; }
.pp-table thead th:last-child  { border-radius: 0 6px 6px 0; }
.pp-table tbody tr {
  border-top: 1px solid #f3f4f6;
}
.pp-table tbody td {
  padding: 12px 16px;
  color: #374151;
}
#global-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

#global-loader.gl-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

.gl-spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(
    #4286f4 0%,
    rgba(66, 134, 244, 0.5) 40%,
    rgba(66, 134, 244, 0.15) 70%,
    transparent 100%
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 5px));
  animation: gl-spin 0.85s linear infinite;
}

@keyframes gl-spin {
  to { transform: rotate(360deg); }
}

[x-cloak] { display: none !important; }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
