/**
 * Nexus 1 Admin Theme for CakePHP 5.1.0
 * Based on Nexus Cove branding guidelines
 */

:root {
  /* Nexus Cove Brand Colors */
  --primary-black: #18191B;
  --light-blue: #779ECA;
  --dark-blue: #4862B8;
  --gray: #A1A1A1;
  
  /* Additional UI Colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --success: #4CAF50;
  --warning: #FFC107;
  --danger: #F44336;
  --info: #2196F3;
}

/* Base Styles */
body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: var(--primary-black);
  background-color: #f8f9fa;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--light-blue);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Layout Components */
.nexus-header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nexus-logo {
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
 /* transform: scale(0.5);
  transform-origin: left center; /* Keeps alignment */
}

.nexus-logo img {
    max-height: 70px; /* or smaller like 30px */
    height: auto;
    width: auto;
}

.nexus-logo-icon {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.nexus-sidebar {
  background-color: var(--primary-black);
  color: var(--white);
  width: 250px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 100px;
  z-index: 900;
}

.nexus-content {
  margin-left: 250px;
  padding: 2rem;
  min-height: calc(100vh - 60px);
}

.nexus-footer {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 1.5rem 0;
  text-align: center;
}

/* Navigation */
.nexus-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nexus-nav-link {
  font-weight: 500;
  color: var(--primary-black);
}

.nexus-nav-link:hover {
  color: var(--dark-blue);
}

.nexus-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nexus-sidebar-item {
  padding: 0.75rem 1.5rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.nexus-sidebar-item:hover, 
.nexus-sidebar-item.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--light-blue);
}

.nexus-sidebar-link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nexus-sidebar-link:hover {
  color: var(--light-blue);
}

/* Cards */
.nexus-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.nexus-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nexus-card-title {
  margin: 0;
  font-size: 1.25rem;
}

.nexus-card-body {
  padding: 1.5rem;
}

.nexus-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--medium-gray);
  background-color: var(--light-gray);
}

/* Forms */
.nexus-form-group {
  margin-bottom: 1.5rem;
}

.nexus-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.nexus-input,
.nexus-select,
.nexus-textarea {
  width: 80%;
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.nexus-input:focus,
.nexus-select:focus,
.nexus-textarea:focus {
  border-color: var(--dark-blue);
  outline: none;
}

.nexus-input.is-invalid,
.nexus-select.is-invalid,
.nexus-textarea.is-invalid {
  border-color: var(--danger);
}

.nexus-error-message {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Buttons */
.nexus-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nexus-btn-primary {
  background-color: var(--dark-blue);
  color: var(--white);
}

.nexus-btn-primary:hover {
  background-color: var(--light-blue);
  color: var(--white);
}

.nexus-btn-secondary {
  background-color: var(--white);
  color: var(--primary-black);
  border-color: var(--medium-gray);
}

.nexus-btn-secondary:hover {
  background-color: var(--light-gray);
}

.nexus-btn-success {
  background-color: var(--success);
  color: var(--white);
}

.nexus-btn-danger {
  background-color: var(--danger);
  color: var(--white);
}

.nexus-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.nexus-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Tables */
.nexus-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.nexus-table th,
.nexus-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--medium-gray);
  text-align: left;
}

.nexus-table th {
  background-color: var(--light-gray);
  font-weight: 600;
}

.nexus-table tbody tr:hover {
  background-color: rgba(119, 158, 202, 0.1);
}

/* Badges */
.nexus-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.nexus-badge-primary {
  background-color: var(--dark-blue);
  color: var(--white);
}

.nexus-badge-success {
  background-color: var(--success);
  color: var(--white);
}

.nexus-badge-warning {
  background-color: var(--warning);
  color: var(--primary-black);
}

.nexus-badge-danger {
  background-color: var(--danger);
  color: var(--white);
}

/* Alerts */
.nexus-alert {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
}

.nexus-alert-success {
  background-color: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.2);
  color: var(--success);
}

.nexus-alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.2);
  color: #856404;
}

.nexus-alert-danger {
  background-color: rgba(244, 67, 54, 0.1);
  border-color: rgba(244, 67, 54, 0.2);
  color: var(--danger);
}

.nexus-alert-info {
  background-color: rgba(33, 150, 243, 0.1);
  border-color: rgba(33, 150, 243, 0.2);
  color: var(--info);
}

/* Progress */
.nexus-progress {
  height: 0.5rem;
  background-color: var(--medium-gray);
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.nexus-progress-bar {
  height: 100%;
  background-color: var(--dark-blue);
  transition: width 0.3s ease;
}

/* Utilities */
.nexus-text-center {
  text-align: center;
}

.nexus-text-right {
  text-align: right;
}

.nexus-text-primary {
  color: var(--dark-blue);
}

.nexus-text-success {
  color: var(--success);
}

.nexus-text-danger {
  color: var(--danger);
}

.nexus-bg-light {
  background-color: var(--light-gray);
}

.nexus-mt-1 { margin-top: 0.25rem; }
.nexus-mt-2 { margin-top: 0.5rem; }
.nexus-mt-3 { margin-top: 1rem; }
.nexus-mt-4 { margin-top: 1.5rem; }
.nexus-mt-5 { margin-top: 3rem; }

.nexus-mb-1 { margin-bottom: 0.25rem; }
.nexus-mb-2 { margin-bottom: 0.5rem; }
.nexus-mb-3 { margin-bottom: 1rem; }
.nexus-mb-4 { margin-bottom: 1.5rem; }
.nexus-mb-5 { margin-bottom: 3rem; }

.nexus-ml-1 { margin-left: 0.25rem; }
.nexus-ml-2 { margin-left: 0.5rem; }
.nexus-ml-3 { margin-left: 1rem; }
.nexus-ml-4 { margin-left: 1.5rem; }
.nexus-ml-5 { margin-left: 3rem; }

.nexus-mr-1 { margin-right: 0.25rem; }
.nexus-mr-2 { margin-right: 0.5rem; }
.nexus-mr-3 { margin-right: 1rem; }
.nexus-mr-4 { margin-right: 1.5rem; }
.nexus-mr-5 { margin-right: 3rem; }

.nexus-p-1 { padding: 0.25rem; }
.nexus-p-2 { padding: 0.5rem; }
.nexus-p-3 { padding: 1rem; }
.nexus-p-4 { padding: 1.5rem; }
.nexus-p-5 { padding: 3rem; }

.nexus-d-flex { display: flex; }
.nexus-flex-column { flex-direction: column; }
.nexus-justify-content-between { justify-content: space-between; }
.nexus-justify-content-center { justify-content: center; }
.nexus-align-items-center { align-items: center; }
.nexus-flex-wrap { flex-wrap: wrap; }

.nexus-w-100 { width: 100%; }
.nexus-h-100 { height: 100%; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .nexus-sidebar {
    width: 200px;
  }
  
  .nexus-content {
    margin-left: 200px;
  }
}

@media (max-width: 768px) {
  .nexus-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .nexus-sidebar.show {
    transform: translateX(0);
  }
  
  .nexus-content {
    margin-left: 0;
  }
  
  .nexus-toggle-sidebar {
    display: block;
  }
}

/* Dashboard Specific Styles */
.nexus-stats-card {
  text-align: center;
  padding: 1.5rem;
}

.nexus-stats-value {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}

.nexus-stats-label {
  font-size: 1rem;
  color: var(--gray);
}

.nexus-chart-container {
  height: 300px;
  margin-bottom: 1.5rem;
}

/* Data Quality Indicators */
.nexus-quality-high {
  border-left: 4px solid var(--success);
}

.nexus-quality-medium {
  border-left: 4px solid var(--warning);
}

.nexus-quality-low {
  border-left: 4px solid var(--danger);
}

/* File Upload Area */
.nexus-upload-area {
  border: 2px dashed var(--medium-gray);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background-color: var(--light-gray);
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.nexus-upload-area:hover {
  border-color: var(--light-blue);
}

.nexus-upload-icon {
  font-size: 3rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* Integration with Font Awesome */
.nexus-icon {
  margin-right: 0.5rem;
}

/**
 * Dropdown Fix for Nexus 1 CakePHP Implementation
 * This CSS ensures the dropdown menu only appears when clicked
 */

/* Base dropdown styling */
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  left: auto;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: var(--primary-black);
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

/* Show dropdown only when parent has show class */
.dropdown.show .dropdown-menu {
  display: block;
}

/* Dropdown items styling */
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: var(--primary-black);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: var(--dark-blue);
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--dark-blue);
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

/* Animation for dropdown */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown.show .dropdown-menu {
  animation: fadeIn 0.2s ease-out forwards;
}

/* Fix for user dropdown specifically */
.nexus-user-menu .dropdown-menu {
  right: 0;
  left: auto;
  margin-top: 0.5rem;
}


/**
 * Sidebar Fix for Nexus 1 CakePHP Implementation
 * This CSS ensures the sidebar navigation only appears when toggled on mobile devices
 */

/* Base sidebar styling - ensure it's hidden by default on mobile */
@media (max-width: 768px) {
  .nexus-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 250px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 60px;
    z-index: 900;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }
  
  /* Only show sidebar when it has the show class */
  .nexus-sidebar.show {
    transform: translateX(0);
  }
  
  /* Add overlay when sidebar is shown */
  body.sidebar-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 899;
    animation: fadeIn 0.3s ease-out forwards;
  }
  
  /* Ensure content doesn't shift when sidebar opens */
  .nexus-content {
    margin-left: 0;
    transition: margin-left 0.3s ease;
  }
  
  /* Style the toggle button */
  .nexus-toggle-sidebar {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }
  
  .nexus-toggle-sidebar:focus {
    outline: none;
  }
}

/* Animation for overlay */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Ensure sidebar is visible on larger screens */
@media (min-width: 769px) {
  .nexus-sidebar {
    transform: translateX(0);
    width: 250px;
  }
  
  .nexus-content {
    margin-left: 250px;
  }
  
  .nexus-toggle-sidebar {
    display: none;
  }
}

/* Adjust for medium screens */
@media (min-width: 769px) and (max-width: 992px) {
  .nexus-sidebar {
    width: 200px;
  }
  
  .nexus-content {
    margin-left: 200px;
  }
}
.client-contexts-index {
    padding: 1rem 0;
}

.page-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.action-buttons {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.empty-message {
    color: var(--gray-color);
    text-align: center;
    padding: 2rem;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--dark-color);
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.paginator {
    margin-top: 1.5rem;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.pagination li {
    display: inline-block;
    margin: 0 0.25rem;
}

.pagination li a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

.pagination li.active a {
    z-index: 3;
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination li.disabled a {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

@media (max-width: 768px) {
    .actions {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .btn-sm {
        width: 100%;
        text-align: center;
    }
}

/**
 * Form Styling for Nexus 1 CakePHP Implementation
 * Enhanced styling for form views to match Nexus branding
 */

/* Form Container Styling */
.nexus-form-container {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Form Heading */
.nexus-form-container legend {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-blue);
  width: 100%;
}

/* Form Group */
.nexus-form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

/* Form Labels */
.nexus-form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
}

/* Form Inputs */
.nexus-form-input,
.nexus-form-select,
.nexus-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--primary-black);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.nexus-form-input:focus,
.nexus-form-select:focus,
.nexus-form-textarea:focus {
  border-color: var(--light-blue);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(72, 98, 184, 0.25);
}

/* Textarea specific styling */
.nexus-form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Select styling */
.nexus-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.825L1.175 4 2.05 3.125 6 7.075 9.95 3.125 10.825 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

/* Form Button */
.nexus-form-button {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 4px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: var(--white);
  background-color: var(--dark-blue);
  cursor: pointer;
}

.nexus-form-button:hover {
  background-color: #3a50a0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nexus-form-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(72, 98, 184, 0.25);
}

.nexus-form-button:active {
  background-color: #304293;
}

/* Form Actions */
.nexus-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.nexus-form-actions .nexus-form-button + .nexus-form-button {
  margin-left: 1rem;
}

/* Form Validation */
.nexus-form-input.is-invalid,
.nexus-form-select.is-invalid,
.nexus-form-textarea.is-invalid {
  border-color: var(--danger);
}

.nexus-form-error {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--danger);
}

/* Side Navigation Styling */
.nexus-side-nav {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.nexus-side-nav .heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-blue);
}

.nexus-side-nav-item {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nexus-side-nav-item:hover {
  background-color: var(--light-gray);
  color: var(--dark-blue);
  text-decoration: none;
}

.nexus-side-nav-item.active {
  background-color: var(--dark-blue);
  color: var(--white);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .nexus-form-actions {
    flex-direction: column;
  }
  
  .nexus-form-actions .nexus-form-button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .nexus-form-actions .nexus-form-button + .nexus-form-button {
    margin-left: 0;
  }
}


/* Clickable Card Styles */
.nexus-clickable-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.nexus-clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.nexus-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(72, 98, 184, 0.8); /* Use primary color with opacity */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    border-radius: var(--nexus-border-radius);
    font-size: 1.1rem;
    font-weight: 600;
}

.nexus-clickable-card:hover .nexus-card-overlay {
    opacity: 1;
}

.nexus-card-overlay i {
    margin-right: 8px;
}
