@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  /* Font families */
  --font-family-base: "Rubik", sans-serif;

  /* Font sizes */
  --font-size-extra-small: 12px;
  --font-size-xs: 13px;
  --font-size-sm: 16px;
  --font-size-base: 14px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-xll: 28px;

  /* Font weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-large: 600;
  --font-weight-bold: 700;
  --font-weight-strong: 800;
  /* Colors */
  --primary-color: #0b1540;
  --sidebar-bg: #f8f9fa;
  --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --sidebar-text: rgba(115, 119, 145, 1);
  --color-white: #ffffff;
  --user-text: rgba(21, 29, 72, 1);
  --color-grey: #333333;
  --color-light-grey: #828282;
  --button-grey: #909090;
  --button-red: #e33730;
  --default-background: #f7fafe;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--default-background);
}
* {
  font-family: var(--font-family-base);
}
.sidebar {
  background: var(--color-white);
  min-height: 100vh;
  max-height: 100vh;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  z-index: 1000;
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}

.logo {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 0;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.logo-icon::before {
  content: "P";
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.nav-menu {
  padding: 10px 0;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  scrollbar-width: none;
  scrollbar-color: #ccc transparent;
}

.nav-menu::-webkit-scrollbar {
  width: 6px;
}

.nav-menu::-webkit-scrollbar-track {
  background: transparent;
}

.nav-menu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.nav-menu::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}
.nav-item.active img {
  filter: brightness(0) invert(1);
}
.nav-item {
  text-decoration: none;
  font-size: var(--font-size-base);
  border-radius: 16px;
  padding: 12px 20px;
  margin: 2px 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--sidebar-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.nav-item:hover {
  background-color: #e9ecef;
  color: var(--primary-color);
}

.nav-item.active {
  background-color: var(--primary-color);
  color: white;
}

.nav-item-content {
  display: flex;
  align-items: center;
}
.nav-item-content img {
  width: 25px;
  margin-right: 10px;
}

.nav-chevron {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.nav-chevron.rotate {
  transform: rotate(180deg);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--color-white); /* match main nav background */
  padding: 8px 10px; /* small padding so submenu items have breathing room */
}

.submenu.show {
  max-height: 400px;
}

.submenu-item {
  padding: 12px 20px;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  border: none;
  background: none;
  width: calc(100% - 20px);
  margin: 6px 10px;
  border-radius: 16px;
  box-sizing: border-box;
}

.submenu-item:hover {
  background-color: #e9ecef;
  color: var(--primary-color);
}

.submenu-item.active {
  background-color: var(--primary-color);
  color: var(--color-white);
  font-weight: 500;
}

.main-content {
  padding: 20px;
  margin-left: 235px;
  transition: margin-left 0.3s ease;
}
.main-heading {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-large);
  color: var(--primary-color);
}

.top-header {
  background: var(--color-white);
  position: fixed;
  top: 0;
  right: 0;
  left: 250px;
  z-index: 999;
  padding: 15px 40px;
  transition: left 0.3s ease;
}

.mobile-logo {
  display: none;
  align-items: center;
}

.mobile-logo .logo-icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.mobile-logo .logo-icon::before {
  font-size: 16px;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 5px;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 20px;
  color: var(--sidebar-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:first-child {
  border-radius: 10px 10px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 10px 10px;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

.dropdown-item i {
  margin-right: 10px;
  width: 18px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--primary-color);
  cursor: pointer;
  display: none;
  padding: 8px;
  border-radius: 5px;
}

.menu-toggle:hover {
  background-color: #f8f9fa;
}

.content-wrapper {
  padding-top: 80px;
}

.header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 30px;
}

.user-info {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 25px;
  color: var(--user-text);
}
.user-info i {
  font-size: 10px;
}
.text-grey {
  color: var(--sidebar-text);
}
.user-avatar {
  width: 45px;
  height: 50px;
  border-radius: 10px;
  margin-right: 10px;
  object-fit: fill;
}
.notification span {
  padding: 15px 10px;
  border-radius: 8px;
  background: rgba(255, 250, 241, 1);
}
.stats-card {
  background: white;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #f8f9fa;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 20px 0px #eeeeee80;
}
.dashboard-stats-card {
  border-radius: 10px;
  padding: 10px 10px 15px;
  height: 100%;
}
.dashboard-stats-card img {
  border-radius: 50%;
  padding: 8px;
  width: 34px;
  margin-bottom: 10px;
}
.dashboard-stats-card.pink img {
  background: #fa5a7d;
}

.dashboard-stats-card.orange img {
  background: #ff947a;
}

.dashboard-stats-card.green img {
  background: #3cd856;
}
.dashboard-stats-card.purple img {
  background: #bf83ff;
}
.dashboard-stats-card.blue img {
  background: #00b7ff;
}
.dashboard-stats-card.coral img {
  background: #ff5b24;
}
/* dashobard card-bg */
.dashboard-stats-card.pink {
  background: #ffe2e5;
}
.dashboard-stats-card.orange {
  background: #fff4de;
}
.dashboard-stats-card.green {
  background: #dcfce7;
}
.dashboard-stats-card.purple {
  background: #f3e8ff;
}
.dashboard-stats-card.blue {
  background: #a7e6ff;
}
.dashboard-stats-card.coral {
  background: #ffbaa4;
}

.stats-value {
  font-size: var(--font-size-xll);
  font-weight: var(--font-weight-large);
  font-weight: bold;
  color: var(--primary-color);
}

.stats-label {
  color: var(--primary-color);
  font-size: var(--font-size-extra-small);
  font-weight: var(--font-weight-medium);

  margin-bottom: 8px;
}

.stats-description {
  color: var(--primary-color);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
}

.chart-container {
  margin: 70px 0 30px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.chart-title {
  font-weight: bold;
  margin-bottom: 15px;
}

/* Chart lines */
.chart-lines {
  position: absolute;
  left: 0;
  top: 40px;
  right: 0;
  bottom: 30px;
  z-index: 0;
}

.chart-line {
  position: absolute;
  left: 60px;
  right: 0;
  height: 0;
  border-top: 1.5px dashed #ddd;
}
.chart-line span {
  position: absolute;
  left: -15px;
  top: -10px;
  transform: translateX(-100%);
  font-size: var(--font-size-base);
  color: var(--primary-color);
  font-weight: var(--font-weight-normal);
}

/* Bars */
.chart-bars {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 300px;
  padding-left: 40px;
  z-index: 1;
  margin-bottom: -36px;
}

.chart-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar {
  width: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-bottom: 11px;
  border-radius: 0; /* Remove rounded corners */
}

.bar-value {
  position: absolute;
  top: -30px;
  font-size: var(--font-size-base);
  color: var(--primary-color);
  font-weight: var(--font-weight-normal);
}

.bar-label {
  font-size: var(--font-size-base);
  color: var(--primary-color);
  font-weight: var(--font-weight-normal);
  text-align: center;
  margin-top: 0px;
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 280px;
    max-height: 100vh;
    height: 100vh;
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .logo {
    padding: 15px 20px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .logo-icon::before {
    font-size: 16px;
  }

  .nav-menu {
    padding: 5px 0 20px 0;
    height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-content {
    margin-left: 0;
    padding: 20px 15px;
  }

  .top-header {
    left: 0;
    padding: 15px 20px;
  }

  .mobile-logo {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .stats-value {
    font-size: 2rem;
  }

  .chart-bars {
    height: 250px;
  }

  .bar {
    width: 25px;
  }

  .chart-bar {
    margin: 0 5px;
  }

  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  .sidebar-overlay.show {
    display: block;
  }

  .user-dropdown {
    right: -10px;
  }
}

@media (max-width: 576px) {
  .filters {
    display: block !important;
  }
  .btn-dafult {
    display: block;
  }
  .sidebar {
    width: 300px;
  }

  .stats-card {
    padding: 20px;
  }
  .dashboard-stats-card {
    padding: 20px;
  }
  .stats-value {
    font-size: 1.8rem;
  }

  .bar {
    width: 20px;
  }

  .chart-bar {
    margin: 0 2px;
  }

  .bar-label {
    font-size: 0.7rem;
  }

  .nav-menu {
    height: calc(100vh - 75px);
  }

  .logo {
    padding: 12px 20px;
  }
}
/* login */

.login-container {
  height: 100vh;
}

.login-form-section {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-form-wrapper {
  width: 100%;
  /* max-width: 400px; */
  padding: 2rem;
}

.logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-text {
  color: #2c3e95;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.welcome-title {
  color: #2c3e95;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.welcome-subtitle {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.login-form .form-label {
  color: #121212;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 0.5rem;
}
.fa-eye,
.fa-eye-slash {
  color: #5b5b5b;
}
.login-form .form-control {
  border: 1px solid #ededed;
  border-radius: 0px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: #2c3e95;
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 149, 0.25);
}

.password-field {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
}

.remember-checkbox {
  margin-bottom: 1.5rem;
}

.remember-checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}

.remember-checkbox label {
  color: #3d3d3d;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

.login-btn {
  background-color: var(--button-red);
  border: none;
  border-radius: 15px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  width: 100%;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #c82333;
}

.image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.slide-1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.slide-2 {
  background: linear-gradient(135deg, #2d1810 0%, #4a2c1a 100%);
}

.slide-3 {
  background: linear-gradient(135deg, #1a2d1a 0%, #2a4a2a 100%);
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slide-icon {
  font-size: 15rem;
  opacity: 0.7;
  color: white;
}

.image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  max-width: 350px;
  z-index: 10;
}

.image-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
  color: #ffffffb8;
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-sm);
}

.navigation-arrows {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff3d;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 1.2rem;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-arrow:active {
  transform: translateY(0);
}

.nav-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.nav-arrow:disabled:hover {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
}

.slide-indicators {
  position: absolute;
  bottom: 6rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.welcome-subtitle {
  font-size: 20px;
  color: #3d3d3d;
  font-weight: var(--font-weight-normal);
}

.login-heading-txt {
  color: var(--primary-color);
  font-size: 50px;
  font-weight: var(--font-weight-large);
}
@media (max-width: 768px) {
  .login-heading-txt {
    font-size: 30px;
  }
  .welcome-subtitle {
    font-size: 15px;
  }
  .image-section {
    display: none;
  }
  .login-form-section {
    min-height: 100vh;
  }
}

/* end */
/* vehicle registration */
.btn-dafult {
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  background: var(--primary-color);
  color: var(--color-white);
  border: none;
}
.secondary {
  border-radius: 10px;
  padding: 10px 20px;
  background: #f7fafe;
  border: none;
}
.filters {
  display: flex;
  gap: 10px;
  align-items: center;
}
:focus-visible {
  outline: none !important;
}
.form-search {
  padding: 10px 35px 10px 15px;
  appearance: none;
  border-radius: 10px;
  width: 100%;
  background-color: #f7fafe;
  border: none;
  color: var(--primary-color);
}
.filter-search {
  position: relative;
  min-width: 180px;
}
.filter-svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.search::placeholder {
  color: var(--primary-color);
  opacity: 1; /* Make sure it's fully visible */
}
.search-container,
.date-picker-container {
  position: relative;
}
.search-svg,
.date-svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.filters .input-style {
  padding: 10px 10px 10px 40px;
  border: none;
  border-radius: 10px;
  background-color: #f7fafe;
  color: var(--primary-color);

  max-width: 150px;
}

.filter-search2 {
    position: relative;
    min-width: 159px;
}
.filters .input-style-2{
    width: 100%;
    padding: 10px;
        border: none;
    border-radius: 10px;
    background-color: #f7fafe;
    color: var(--primary-color);
}
.date-input {
  padding: 10px 10px 10px 40px;
  border: none;
  border-radius: 10px;
  background-color: #f7fafe;
  max-width: 200px;
  color: var(--primary-color);
}
/* table */
.table-data .table-bordered {
  background-color: #f6f9fd;
  border-color: #cacaca;
}
table th {
  background: var(--primary-color);
  color: var(--color-white);
  padding: 12px;
  text-align: center;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}
table td {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  padding: 12px;
  text-align: center;
}

.actions i {
  margin-right: 8px;
  cursor: pointer;
}

.form-show {
  padding: 10px 35px 10px 15px;
  appearance: none;
  border-radius: 20px;
  width: 100%;
  background-color: var(--color-white);
  border: none;
  color: var(--primary-color);
  font-size: var(--font-size-extra-small);
  box-shadow: 0px 0px 0px 1px rgba(7, 102, 189, 0.05);
}
.show-reative {
  position: relative;
}
.show-svg {
  position: absolute;
  left: 85px;
  bottom: -3px;
  transform: translateY(-50%);
  pointer-events: none;
}
.text-pagination {
  font-size: var(--font-size-base);
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}
.page-item.active a {
  border-radius: 50%;
  background-color: var(--primary-color);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  border: none;
}
.page-item a {
  border: none;
  font-size: var(--font-size-base);
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}
.page-item.disabled a {
  border: none;
  color: rgba(130, 130, 130, 1);
  background-color: #fff;
}
.pagination {
  border: 1px solid rgba(241, 241, 244, 1);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 5px;
}
.page-link:focus {
  color: var(--primary-color);
  background-color: unset !important;
  box-shadow: none !important;
}
.formLabel {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: 7px;
}
.form-control {
  padding: 10px;
  border: 1px solid rgba(219, 220, 222, 1);
  margin-bottom: 8px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: var(--primary-color);
}
.form-select.filled {
  color: var(--primary-color);
}
.form-select {
  padding: 10px;
  border: 1px solid rgba(219, 220, 222, 1);
  margin-bottom: 8px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: rgba(137, 134, 141, 1);
}
.form-select:focus,
.form-control:focus {
  border: 1px solid rgba(219, 220, 222, 1) !important;
  box-shadow: none !important;
}
.form-control::placeholder {
  color: rgba(137, 134, 141, 1);
}
.btn-custom {

  background: #0b1540;
  padding: 8px 20px;
  border-radius: 10px;
  color: var(--color-white);
  border: none;
  text-decoration: none;

}
/* custom checkbox */
.checkbox-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

/* Hide default checkbox */
.checkbox-container input {
  display: none;
}

/* Custom box */
.custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* Default - No state */
.checkbox-container input:not(:checked) + .custom-checkbox {
  background-color: #8e8e93; /* grey */
  color: white;
}

/* Checked - Yes state */
.checkbox-container input:checked + .custom-checkbox {
  background-color: #137d0e; /* green */
  color: white;
}
.checkbox-container input:checked + .no-check {
  background-color: var(--button-red); /* green */
}

/* Check Icon */
.custom-checkbox svg {
  width: 14px;
  height: 14px;
  stroke: white;
}
.upload-label {
  font-weight: bold;
  color: #0b0c2a; /* Navy text */
  margin-bottom: 8px;
  display: block;
}

.upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 0.375rem;
  padding: 10px;
  border: 1px solid rgba(219, 220, 222, 1);
  background-color: #fff;
  cursor: pointer;

  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: rgba(137, 134, 141, 1);
}

.upload-wrapper span {
  color: #999;
  flex: 1;
}

.upload-wrapper svg {
  width: 18px;
  height: 18px;
  fill: #999;
}

input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  cursor: pointer;
}
