
    
    body {
      min-height: 100vh;
      margin: 0;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      
      display: flex;
      flex-direction: column;
      color: #baddff;
    }

    input:focus,
    textarea:focus,
    select:focus {
      box-shadow: none !important;
      border-colour: #475569;
      color: #1e293b;
    }

    .summary-input-textarea {
      height: 500px;
      resize: none;
      text-align: left;
      vertical-align: top;
      background-color: #334155;
      color: #e2e8f0;
      border: 2px solid #475569;
    }

.summary-input-textarea:focus {
      background-color: white !important;
      color: #1e293b;
    }

.summary-input-textarea::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }

.summary-output-textarea {
      height: 260px;
      resize: none;
      text-align: left;
      vertical-align: top;
      background-color: #334155;
      color: #e2e8f0;
      border: 2px solid #475569;
    }

.summary-output-textarea:focus {
      background-color: white !important;
      box-shadow: 0 0 5px 2px rgba(100, 149, 237, 0.4);
      border-color: #4682b4;
      color: #1e293b;
    }

.summary-output-textarea::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }

    .task-item, .blocker-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      padding: 8px;
      background: #334155;
      border-radius: 6px;
      border: 1px solid #475569;
    }

.task-item input, .blocker-item input {
      flex: 1;
      border: none;
      background: transparent;
      padding: 0;
      margin: 0;
      font-family: inherit;
      font-size: inherit;
      color: #e2e8f0;
    }

    .task-item input:focus, .blocker-item input:focus {
      outline: none;
      box-shadow: none;
    }

    .btn-delete {
      background: none;
      border: none;
      color: #ef4444;
      cursor: pointer;
      padding: 4px;
      transition: color 0.2s;
    }

    .btn-delete:hover {
      color: #dc2626;
    }

    .blocker-resolved {
      text-decoration: line-through;
      opacity: 0.5;
    }

    .blocker-resolved input {
      text-decoration: line-through;
      color: #94a3b8;
    }

    .accordion-button {
      font-weight: bold;
      color: #e2e8f0;
    }

    .accordion-button:not(.collapsed) {
      background: #334155;
      color: #e2e8f0;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: #475569;
    }

    .accordion-item {
      border: 1px solid #475569;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .accordion-header {
      background: #334155;
    }

.accordion-body {
      padding: 12px;
      color: #e2e8f0;
    }

    .badge {
      font-weight: normal;
      padding: 10px;
      color: #e2e8f0;
    }

    .blocker-item {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
      padding: 6px;
      background: #334155;
      border-radius: 4px;
      border: 1px solid #475569;
    }

    .blocker-item input {
      flex: 1;
      border: none;
      background: transparent;
      padding: 0;
      margin: 0;
      font-family: inherit;
      font-size: inherit;
      color: #e2e8f0;
    }

    .blocker-item input:focus {
      outline: none;
      box-shadow: none;
    }

    .top-bar {
      flex: 0 0 auto;
      width: 100%;
      background: linear-gradient(to right, #1e3c72, #2e5aa0);
      border-bottom: 3px solid #0f172a;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
      padding: 0 20px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 20px;
      align-items: center;
      z-index: 10;
      padding-top: 20px;
      padding-bottom: 20px;
      padding-left: 40px;
      padding-right: 40px;
    }

    .top-bar-center {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    .top-bar-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .top-bar .logo {
      height: 50px;
      border-radius: 12px;
    }

    .form-control {
      border-radius: 10px;
      border: 2px solid #475569;
      box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
      background-color: #334155;
      color: #e2e8f0;
    }

.form-control:focus {
      box-shadow: 0 0 5px 2px rgba(100, 149, 237, 0.4);
      border-colour: #4682b4;
      color: #1e293b;
    }

    .readonly-input {
      background-color: #334155;
      cursor: not-allowed;
    }

    

    .page-wrapper {
      flex: 1;
      display: flex;
      overflow: hidden;
    }

    .sidebar {
      width: 220px;
      background: linear-gradient(to bottom, #1e293b, #334155);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      box-shadow: inset -3px 0 5px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
    }

    .action-links{ padding: 1rem; }

    .nav-link {
      font-weight: bold;
      margin: 10px 0;
      padding: 15px;
      border-radius: 15px;
      background: #334155;
      colour: #e2e8f0;
      box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      background: #2563eb;
      colour: white;
      transform: translateX(5px);
      text-decoration: none;
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .main-content {
      flex: 1;
      padding: 2rem;
      background: #1e293b;
      overflow-y: auto;
    }

    h4, h5 {
      font-weight: bold;
      colour: #e2e8f0;
    }

@media (max-width: 992px) {
      .top-bar {
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding-left: 20px;
        padding-right: 20px;
      }
      
      .top-bar-left {
        display: none;
      }
      
      .top-bar-center {
        justify-content: center;
      }
      
      .top-bar-right {
        justify-content: flex-end;
      }
    }

@media (max-width: 768px) {
      .page-wrapper {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
      }

      .nav-link {
        flex: 1;
        text-align: centre;
        margin: 0.5rem;
      }
      
      .top-bar {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-left: 20px;
        padding-right: 20px;
      }
      
      .top-bar-center {
        flex-direction: column;
        gap: 10px;
        width: 100%;
      }
      
      .global-search-input {
        width: 100% !important;
      }
    }

    .modal-body .form-check-label {
      font-size: 0.85rem;
      margin-left: 10px;
    }

    .modal-body .form-select {
      font-size: 0.85rem;
    }

    .modal-body .form-label {
      font-size: 0.8rem;
    }

    

  .category-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .category-link {
    width: 100%;
    font-weight: bold;
    padding: 12px;
    border-radius: 0;
    color: white;
    background: #2e5aa0;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: left;
    border: none;
    text-decoration: none;
  }
  .category-link:hover {
    background: #1e3c72;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  }
  .category-link.active {
    background: #1e293b;;
    color: #e2e8f0;
    box-shadow: none;
  }

    

    
  #newCopMessageResp textarea.form-control {
    min-height: 500px;
    background-color: #334155;
    color: #e2e8f0;
    border: 2px solid #475569;
  }

#newCopMessageResp textarea.form-control:focus {
      color: #1e293b;
    }

#newCopMessageResp textarea.form-control::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }
  #newSummaryResp textarea.form-control {
    min-height: 250px;
    background-color: #334155;
    color: #e2e8f0;
    border: 2px solid #475569;
  }

#newSummaryResp textarea.form-control:focus {
      color: #1e293b;
    }

#newSummaryResp textarea.form-control::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }
  #issues{
    min-height: 500px;
    background-color: #334155;
    color: #e2e8f0;
    border: 2px solid #475569;
  }

#issues:focus {
      color: #1e293b;
    }

#issues::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }

    

    #cvssCalcScore, #cvssCalcRating, #cvssCalcVector {
      font-weight: bold;
      color: #e2e8f0;
    }

    .cvss-metric-group {
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
      border-radius: 10px;
      padding: 12px;
      margin-bottom: 15px;
      border: 2px solid #475569;
      box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05);
      min-height: 130px;
    }

    .cvss-metric-title {
      font-size: 0.8rem;
      color: #94a3b8;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold;
      border-bottom: 2px solid #475569;
      padding-bottom: 6px;
    }

.cvss-score-display {
      background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
      color: white;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      margin-bottom: 20px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .cvss-score-value {
      font-size: 3.5rem;
      font-weight: bold;
      line-height: 1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      margin-top: 10px;
    }

    .cvss-vector-value{
      margin-left: 10px;
      margin-top: -6px;
      color: #e2e8f0;
    }

    @media (max-width: 768px) {
      .cvss-score-display {
        padding: 15px;
      }
      
      .cvss-score-value {
        font-size: 2.5rem;
      }
      
      .cvss-metric-group {
        padding: 15px;
      }
    }

    .cvss-score-label {
      font-size: 0.9rem;
      opacity: 0.95;
      margin-top: 8px;
      letter-spacing: 1px;
      color: #e2e8f0;
    }

    .cvss-rating-badge {
      display: inline-block;
      padding: 10px 24px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1.3rem;
      margin-top: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .cvss-rating-none {
      background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
      color: #9ca3af;
    }

    .cvss-rating-low {
      background: linear-gradient(135deg, #14532d 0%, #166534 100%);
      color: #86efac;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .cvss-rating-medium {
      background: linear-gradient(135deg, #713f12 0%, #7c2d12 100%);
      color: #fcd34d;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .cvss-rating-high {
      background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
      color: #fca5a5;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .risk-rating-text {
      font-weight: bold;
      font-size: 1rem;
      margin-top: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .risk-rating-none {
      color: #9ca3af;
    }

    .risk-rating-low {
      color: #86efac;
    }

    .risk-rating-medium {
      color: #fcd34d;
    }

    .risk-rating-high {
      color: #fca5a5;
    }

    .cvss-vector-display {
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
      border-radius: 8px;
      padding: 14px;
      font-family: 'Courier New', monospace;
      font-size: 0.85rem;
      word-break: break-all;
      margin-top: 10px;
      min-height: 60px;
      display: flex;
      align-items: center;
      border: 1px solid #475569;
    }

    .cvss-vector-label {
      font-size: 0.75rem;
      color: #94a3b8;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .cvss-metric-option {
      padding: 8px 12px;
      margin: 4px 0;
      border-radius: 6px;
      transition: all 0.2s;
      border: 1px solid transparent;
      color: #e2e8f0;
    }

    .cvss-metric-option:hover {
      background: #475569;
      border-color: #64748b;
    }

    .cvss-metric-option.selected {
      background: #2563eb;
      color: white;
      border-color: #2563eb;
    }

.cvss-vector-preview {
      font-family: 'Courier New', monospace;
      font-size: 0.8rem;
      color: #94a3b8;
      margin-top: 5px;
      padding: 5px;
      background: #334155;
      border-radius: 4px;
    }

    .cvss-calc-btn {
      background: linear-gradient(135deg, #15803d 0%, #166534 100%);
      color: white;
      border: none;
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: bold;
      font-size: 1.1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .cvss-calc-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .cvss-reset-btn {
      background: linear-gradient(135deg, #475569 0%, #334155 100%);
      color: white;
      border: none;
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: bold;
      transition: all 0.3s;
    }

    .cvss-reset-btn:hover {
      background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .text-center {
      text-align: center !important;
    }

    .text-muted {
      color: #94a3b8 !important;
    }

    .fw-bold {
      font-weight: bold !important;
    }

    .me-2 {
      margin-right: 0.5rem !important;
    }

    .ms-2 {
      margin-left: 0.5rem !important;
    }

    .py-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }

    .px-4 {
      padding-left: 1.5rem !important;
      padding-right: 1.5rem !important;
    }

    .mt-3 {
      margin-top: 1rem !important;
    }

    .mb-3 {
      margin-bottom: 1rem !important;
    }

    .mb-4 {
      margin-bottom: 1.5rem !important;
    }

    .mt-4 {
      margin-top: 1.5rem !important;
    }

    .rounded {
      border-radius: 0.25rem !important;
    }

    .shadow-sm {
      box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    }

    .bg-white {
      background-color: #334155 !important;
    }

    .p-4 {
      padding: 1.5rem !important;
    }

    .container {
      max-width: 1200px;
    }

    .form-label {
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: #e2e8f0;
    }

    .form-select:disabled {
      background-color: #475569;
      cursor: not-allowed;
      color: #94a3b8;
    }

    .form-control[readonly] {
      background-color: #475569;
      cursor: not-allowed;
      color: #94a3b8;
    }

.form-control[readonly]::placeholder {
      color: #94a3b8;
      opacity: 1;
    }

    .form-check-input {
      cursor: pointer;
      accent-color: #2563eb;
    }

    .form-check-label {
      cursor: pointer;
      color: #e2e8f0;
    }

    .form-control {
      height: auto;
    }

    .modal-dialog {
      max-width: 900px;
    }

    .modal-content {
      border-radius: 10px;
      border: 1px solid #475569;
      background-color: #334155;
    }

    .modal-header {
      background-color: #334155;
      border-bottom: 1px solid #475569;
      padding: 15px 20px;
    }

    .modal-footer {
      border-top: 1px solid #475569;
      padding: 15px 20px;
      background-color: #334155;
    }

    .modal-body {
      padding: 20px;
      color: #e2e8f0;
    }

    .modal-title {
      font-weight: bold;
      color: #e2e8f0;
    }

    .btn-close {
      filter: invert(1);
      opacity: 0.6;
    }

    .btn-close:hover {
      opacity: 1;
    }

    .btn-primary {
      background-color: #2563eb;
      border-color: #2563eb;
    }

    .btn-primary:hover {
      background-color: #1d4ed8;
      border-color: #1d4ed8;
    }

    .btn-secondary {
      background-color: #475569;
      border-color: #475569;
    }

    .btn-secondary:hover {
      background-color: #334155;
      border-color: #334155;
    }

.btn-outline-secondary {
      color: #94a3b8;
      border-color: #475569;
    }

.btn-outline-secondary:hover {
      background-color: #475569;
      color: white;
    }

    .form-select {
      padding: 8px 12px;
      background-color: #334155;
      color: #e2e8f0;
      border-color: #475569;
    }

.form-select::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }

    .form-control {
      padding: 8px 12px;
      color: #e2e8f0;
    }

.form-control::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }

    .form-check {
      padding: 5px 0;
    }

    .form-check-inline {
      display: inline-flex;
      align-items: center;
      margin-right: 15px;
    }

    

    .form-text {
      font-size: 0.875rem;
      color: #94a3b8;
    }

    .small {
      font-size: 0.875rem;
    }

    .fw-normal {
      font-weight: normal;
    }

.text-dark {
      color: #444648 !important
    }

.bg-secondary {
      background-color: #475569 !important;
    }

    .bg-warning {
      background-color: #fbbf24 !important;
    }

    .text-muted {
      color: #94a3b8 !important;
    }

.form-check .form-check-input {
  margin-left:0 !important;
  accent-color: #2563eb;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.toggle-label {
      font-size: 0.8rem;
      color: #94a3b8;
      min-width: 50px;
      text-align: center;
    }

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 20px;
}

.switch input { 
  opacity: 0; 
  width: 0; 
  height: 0; 
}

.slider {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #64748b;
      transition: .3s;
      border-radius: 20px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 16px; 
      width: 16px;
      left: 2px; 
      bottom: 2px;
      background-color: white;
      transition: .3s;
      border-radius: 50%;
    }

    input:checked + .slider { 
      background-color: #2563eb; 
    }

input:checked + .slider:before { 
  transform: translateX(24px); 
}

.vuln-writeup .form-label{ font-weight:700; color: #e2e8f0; }

#impact,
#description,
#techdetail,
#recommendations {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #e2e8f0;
}

#impact:focus,
#description:focus,
#techdetail:focus,
#recommendations:focus {
  color: #1e293b;
}

.vuln-impact,
.vuln-desc,
.vuln-tech-detail,
.vuln-recommendations {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  color: #e2e8f0;
}

.stats-container {
      margin-bottom: 25px;
      padding: 15px 20px;
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
      border-radius: 10px;
      border: 2px solid #475569;
    }
    
    .stats-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 10px 10px;
    }
    
    .stats-table td {
      vertical-align: top;
      width: 20%;
    }
    
.stats-badge {
      display: inline-block;
      padding: 8px 16px;
      font-weight: normal;
      width: 200px;
      font-size: 0.9rem;
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      color: white;
      box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }
    
    .stats-badge:hover {
      
      box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }
    

    
    @media (max-width: 768px) {
      .stats-table {
        border-spacing: 0 10px;
      }
      
      .stats-table td {
        display: block;
        padding: 0;
      }
      
      .stats-badge {
        display: block;
        text-align: center;
        margin-bottom: 5px;
      }
    }

    .dashboard-table-container {
      background: #334155;
      border-radius: 10px;
      border: 2px solid #475569;
      box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }
    
    .dashboard-table {
      width: 100%;
      margin-bottom: 0;
    }
    
    .dashboard-table thead {
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      color: white;
    }
    
    .dashboard-table thead th {
      padding: 12px 15px;
      font-weight: bold;
      border-bottom: 3px solid #1e40af;
      text-align: center;
    }
    
    .dashboard-table tbody tr {
      transition: all 0.2s ease;
      border-bottom: 1px solid #475569;
      height: 120px;
      box-sizing: border-box;
    }
    
    .dashboard-table tbody tr:hover {
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
    }
    
    .dashboard-table tbody td {
      padding: 12px 15px;
      vertical-align: top;
      line-height: 1.6;
      white-space: normal;
      word-wrap: break-word;
      color: #e2e8f0;
    }
    
    .dashboard-table tbody tr:nth-child(even) {
      background-color: #334155;
    }
    
    .dashboard-table tbody tr:nth-child(even):hover {
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
    }
    
    .dashboard-table tbody tr.needs-check {
       box-shadow: inset -5px 0 0 #dc3545;
    }
    

    .dashboard-table tbody tr.needs-check td,
    .dashboard-table tbody tr td {
      background: transparent;
    }
    
    .table-search-input {
      width: 120px;
      font-size: 0.8rem;
      padding: 6px 10px;
      border-radius: 8px;
      border: 1px solid #475569;
      background: #334155;
      color: #e2e8f0;
    }

.table-search-input::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }
    
    .table-search-input:focus {
      outline: none;
      box-shadow: 0 0 3px 2px rgba(100, 149, 237, 0.4);
      border-color: #2563eb;
      color: #1e293b;
    }
    
    .global-search-container {
      margin-bottom: 20px;
      padding: 15px;
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
      border-radius: 10px;
      border: 1px solid #475569;
    }
    
    .global-search-input {
      width: 280px;
      padding: 8px 12px;
      border-radius: 8px;
      border: 2px solid #475569;
      background: #334155;
      color: #e2e8f0;
      font-size: 0.9rem;
    }

.global-search-input::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }
    
    .top-bar .d-flex.gap-2 .btn {
      padding: 8px 16px;
    }
    

    
    .items-per-page-select {
      width: auto;
      padding: 6px 10px;
      border-radius: 8px;
      border: 2px solid #475569;
      background: #334155;
      color: #e2e8f0;
      font-size: 0.9rem;
    }

.items-per-page-select::placeholder {
      color: #cbd5e1;
      opacity: 1;
    }
    
    .items-per-page-select:focus {
      outline: none;
      box-shadow: 0 0 5px 2px rgba(100, 149, 237, 0.4);
      border-color: #2563eb;
      color: #1e293b;
    }
    
    .sortable-header {
      cursor: pointer;
      user-select: none;
      transition: all 0.2s ease;
    }
    
    .sortable-header:hover {
      background: rgba(255, 255, 255, 0.15);
    }
    
    .sort-icon {
      font-size: 0.75rem;
      margin-left: 6px;
      color: #94a3b8;
    }
    
    .risk-badge-low {
      background: linear-gradient(135deg, #14532d 0%, #166534 100%);
      color: #86efac;
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 0.85rem;
    }
    
    .risk-badge-medium {
      background: linear-gradient(135deg, #713f12 0%, #7c2d12 100%);
      color: #fcd34d;
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 0.85rem;
    }
    
    .risk-badge-high {
      background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
      color: #fca5a5;
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 0.85rem;
    }
    
    .risk-badge-none {
      background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
      color: #9ca3af;
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 0.85rem;
    }
    
.dashboard-table tbody td a {
      color: #e2e8f0;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.2s ease;
      display: block;
      margin-bottom: 4px;
    }
    
    .dashboard-table tbody td a:hover {
      color: #e1ff4f;
      text-decoration: none;
    }
    
    .dashboard-table tbody tr.search-active td:nth-child(2) {
      max-width: 200px;
      white-space: normal;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .dashboard-table tbody tr.search-active td:nth-child(3) {
      max-width: 400px;
      white-space: wrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .pagination-container {
      margin-top: 20px;
      padding: 15px;
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
      border-radius: 10px;
      border: 1px solid #475569;
    }
    
    .pagination-container .page-link {
      color: #e2e8f0;
      background: #334155;
      border: 1px solid #475569;
      padding: 6px 12px;
      margin: 0 2px;
      border-radius: 6px;
      transition: all 0.2s ease;
    }
    
    .pagination-container .page-link:hover {
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
      border-color: #2563eb;
    }
    
    .pagination-container .page-item.active .page-link {
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      color: white;
      border-color: #1d4ed8;
    }
    
    .pagination-info {
      margin-top: 10px;
      text-align: center;
      color: #94a3b8;
      font-size: 0.9rem;
    }
    
.dashboard-table tbody td:nth-child(1) {
      font-size: 0.85rem;
      width: 70px !important;
      min-width: 70px !important;
      max-width: 70px !important;
    }
    
    .dashboard-table tbody td:nth-child(2) {
      font-size: 0.9rem;
      width: 200px !important;
      min-width: 200px !important;
      max-width: 200px !important;
    }
    
    .dashboard-table tbody td:nth-child(3) {
      width: 400px !important;
      min-width: 400px !important;
      max-width: 400px !important;
      white-space: normal !important;
      word-break: break-word !important;
    }
    
    .dashboard-table tbody td:nth-child(4),
    .dashboard-table tbody td:nth-child(5) {
      white-space: normal;
      width: 50px !important;
      min-width: 50px !important;
      max-width: 80px !important;
      text-align: center;
    }

.stats-badge strong{
      background: #1d4ed8;
      color: #dbeafe;
      padding: 10px;
      font-family: ui-monospace;
    }

.vuln-actions-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 0 !important;
}

.vuln-actions-left {
  display: flex;
  gap: 1rem;
  margin-bottom: 0 !important;
}
.vuln-actions-right{ 
  text-align: right; 
  margin-bottom: 0 !important;
}