html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

html {
  height: -webkit-fill-available;
}

main {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  height: -webkit-fill-available;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
}

.b-example-divider {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.bi {
  vertical-align: -.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle { outline: 0; }

.nav-flush .nav-link {
  border-radius: 0;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .65);
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, .85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold { font-weight: 600; }
.lh-tight { line-height: 1.25; }

/* Reuse the same styling as logs page */
.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.page-link {
  margin: 0 5px;
  padding: 8px 12px;
  text-decoration: none;
  color: #007bff;
  border: 1px solid #007bff;
  border-radius: 5px;
  font-size: 14px;
}

.page-link.active {
  background-color: #007bff;
  color: white;
}

.page-link:hover {
  background-color: #0056b3;
  color: white;
}

.badge {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.badge-success {
  background-color: #28a745;
  color: white;
}

.badge-danger {
  background-color: #dc3545;
  color: white;
}

.badge-warning {
  background-color: #ffc107;
  color: #212529;
}

.badge-secondary {
  background-color: #6c757d;
  color: white;
}

tr:hover {
  background-color: #f8f9fa;
}



.card {
  border-radius: 0.35rem;
}

.border-start-primary {
  border-left: 0.25rem solid #4e73df !important;
}

.border-start-success {
  border-left: 0.25rem solid #1cc88a !important;
}

.border-start-warning {
  border-left: 0.25rem solid #f6c23e !important;
}

.border-start-danger {
  border-left: 0.25rem solid #e74a3b !important;
}

.chart-pie {
  position: relative;
  height: 15rem;
}

.timeline {
  position: relative;
  padding-left: 1rem;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dee2e6;
}

.timeline-item {
  position: relative;
  padding-bottom: 1rem;
}

.timeline-icon {
  position: absolute;
  left: -1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 1;
}

.timeline-content {
  margin-left: 1.5rem;
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border-radius: 0.25rem;
}

.compliance-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.35rem;
  height: 100%;
}

.compliance-card.compliant {
  background-color: rgba(28, 200, 138, 0.1);
  border-left: 4px solid #1cc88a;
}

.compliance-card.non-compliant {
  background-color: rgba(231, 74, 59, 0.1);
  border-left: 4px solid #e74a3b;
}

.compliance-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: #5a5c69;
}

.compliance-card.compliant .compliance-icon {
  color: #1cc88a;
}

.compliance-card.non-compliant .compliance-icon {
  color: #e74a3b;
}

.compliance-content h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.compliance-content p {
  font-weight: bold;
  margin-bottom: 0.25rem;
}



        .chart-bar, .chart-pie {
            position: relative;
            height: 300px;
        }
        
        .timeline {
            position: relative;
            padding-left: 1rem;
        }
        
        .timeline-item {
            position: relative;
            padding-bottom: 1.5rem;
            padding-left: 2rem;
            border-left: 1px solid #dee2e6;
        }
        
        .timeline-item:last-child {
            border-left: 1px solid transparent;
        }
        
        .timeline-icon {
            position: absolute;
            left: -0.5rem;
            top: 0;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }
        
        .timeline-content {
            padding-left: 0.5rem;
        }
        
        .compliance-card {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .compliance-card.compliant {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid #28a745;
        }
        
        .compliance-card.non-compliant {
            background-color: rgba(220, 53, 69, 0.1);
            border-left: 4px solid #dc3545;
        }
        
        .compliance-icon {
            font-size: 2rem;
            margin-right: 1rem;
        }
        
        .compliance-card.compliant .compliance-icon {
            color: #28a745;
        }
        
        .compliance-card.non-compliant .compliance-icon {
            color: #dc3545;
        }