body {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #171717;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #171717;
  margin-bottom: 0.5rem;
}

h1, .h1 {
  font-size: 2.25rem;
}

h2, .h2 {
  font-size: 1.875rem;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 1.25rem;
}

h5, .h5 {
  font-size: 1.125rem;
}

h6, .h6 {
  font-size: 1rem;
}

a {
  color: #6610f2;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #4709ac;
  text-decoration: none;
}

.text-primary {
  color: #6610f2 !important;
}

.text-accent {
  color: #e83e8c !important;
}

.text-indigo {
  color: #6610f2 !important;
}

.text-pink {
  color: #e83e8c !important;
}

.text-orange {
  color: #fd7e14 !important;
}

.text-warning {
  color: #fd7e14 !important;
}

.brand-text {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
}

.card-title {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.nav-link {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.navbar-nav .nav-link {
  font-weight: 400;
}

.sidebar .nav-link {
  font-weight: 400;
  font-size: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn:focus, .btn:focus-visible {
  outline: 2px solid #6610f2;
  outline-offset: 2px;
}
.btn:disabled, .btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn svg,
.btn i {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #510bc4;
  border-color: #4d0abb;
  color: #ffffff;
}
.btn-primary:active, .btn-primary.active {
  background-color: #4709ac;
  border-color: #41099e;
}

.btn-outline-primary {
  background-color: transparent;
  color: #6610f2;
  border-color: #6610f2;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: rgba(102, 16, 242, 0.08);
  color: #6610f2;
  border-color: #6610f2;
}
.btn-outline-primary:active {
  background-color: rgba(102, 16, 242, 0.12);
}

.btn-pink,
.btn-accent {
  background-color: #e83e8c;
  border-color: #e83e8c;
  color: #ffffff;
}
.btn-pink:hover, .btn-pink:focus,
.btn-accent:hover,
.btn-accent:focus {
  background-color: #d91a72;
  border-color: #d0196d;
  color: #ffffff;
}

.btn-outline-pink {
  background-color: transparent;
  color: #e83e8c;
  border-color: #e83e8c;
}
.btn-outline-pink:hover, .btn-outline-pink:focus {
  background-color: rgba(232, 62, 140, 0.08);
  color: #e83e8c;
}

.btn-secondary,
.btn-default {
  background-color: transparent;
  color: #171717;
  border-color: #e5e5e5;
}
.btn-secondary:hover, .btn-secondary:focus,
.btn-default:hover,
.btn-default:focus {
  background-color: #f5f5f5;
  border-color: #d4d4d4;
  color: #171717;
}
.btn-secondary:active,
.btn-default:active {
  background-color: #e5e5e5;
}

.btn-ghost {
  background-color: transparent;
  color: #171717;
  border-color: transparent;
}
.btn-ghost:hover, .btn-ghost:focus {
  background-color: #f5f5f5;
}
.btn-ghost:active {
  background-color: #e5e5e5;
}

.btn-warning {
  background-color: #fd7e14;
  border-color: #fd7e14;
  color: #ffffff;
}
.btn-warning:hover, .btn-warning:focus {
  background-color: #dc6502;
  border-color: #d26102;
  color: #ffffff;
}

.btn-outline-warning {
  background-color: transparent;
  color: #fd7e14;
  border-color: #fd7e14;
}
.btn-outline-warning:hover, .btn-outline-warning:focus {
  background-color: rgba(253, 126, 20, 0.08);
  color: #fd7e14;
}

.btn-success {
  background-color: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
}
.btn-success:hover, .btn-success:focus {
  background-color: #1ca24d;
  border-color: #1a9a49;
  color: #ffffff;
}

.btn-outline-success {
  background-color: transparent;
  color: #22c55e;
  border-color: #22c55e;
}
.btn-outline-success:hover, .btn-outline-success:focus {
  background-color: rgba(34, 197, 94, 0.08);
  color: #22c55e;
}

.btn-danger {
  background-color: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}
.btn-danger:hover, .btn-danger:focus {
  background-color: #ec1e1e;
  border-color: #eb1515;
  color: #ffffff;
}

.btn-outline-danger {
  background-color: transparent;
  color: #ef4444;
  border-color: #ef4444;
}
.btn-outline-danger:hover, .btn-outline-danger:focus {
  background-color: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.btn-info {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
}
.btn-info:hover, .btn-info:focus {
  background-color: #1469f4;
  border-color: #0b63f3;
  color: #ffffff;
}

.btn-outline-info {
  background-color: transparent;
  color: #3b82f6;
  border-color: #3b82f6;
}
.btn-outline-info:hover, .btn-outline-info:focus {
  background-color: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.btn-main {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
}
.btn-main:hover, .btn-main:focus {
  background-color: #510bc4;
  border-color: #4d0abb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(10, 10, 10, 0.1), 0 2px 4px -2px rgba(10, 10, 10, 0.1);
}
.btn-main:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
}
.btn-main.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-radius: 0.75rem 0 0 0.75rem;
}
.btn-group .btn:last-child {
  border-radius: 0 0.75rem 0.75rem 0;
}
.btn-group .btn:not(:first-child) {
  margin-left: -1px;
}

.card {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
  overflow: hidden;
  transition: all 0.2s ease;
}
.card.card-widget, .card.card--interactive {
  cursor: pointer;
}
.card.card-widget:hover, .card.card--interactive:hover {
  border-color: #d4d4d4;
  box-shadow: 0 10px 15px -3px rgba(10, 10, 10, 0.1), 0 4px 6px -4px rgba(10, 10, 10, 0.1);
  transform: translateY(-2px);
}
.card.card-widget:active, .card.card--interactive:active {
  transform: translateY(0);
}

.card-header {
  padding: 1.25rem 1.25rem;
  background-color: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}
.card-header:first-child {
  border-radius: calc(1rem - 1px) calc(1rem - 1px) 0 0;
}
.card-header .card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin: 0;
}

.card-body {
  padding: 1.25rem 1.25rem;
}

.card-footer {
  padding: 1.25rem 1.25rem;
  background-color: #fafafa;
  border-top: 1px solid #e5e5e5;
}
.card-footer:last-child {
  border-radius: 0 0 calc(1rem - 1px) calc(1rem - 1px);
}

.card-outline {
  border-top-width: 3px;
}
.card-outline.card-primary {
  border-top-color: #6610f2;
}
.card-outline.card-success {
  border-top-color: #22c55e;
}
.card-outline.card-warning {
  border-top-color: #fd7e14;
}
.card-outline.card-danger {
  border-top-color: #ef4444;
}
.card-outline.card-info {
  border-top-color: #3b82f6;
}

.widget-event {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.15s ease;
}
.widget-event:hover {
  border-color: #d4d4d4;
  box-shadow: 0 10px 15px -3px rgba(10, 10, 10, 0.1), 0 4px 6px -4px rgba(10, 10, 10, 0.1);
  transform: translateY(-2px);
}
.widget-event:hover .widget-user-header img {
  transform: scale(1.03);
}

.widget-user-header {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.widget-user-header img,
.widget-user-header .widget-user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.price-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #ffffff;
  color: #171717;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
}

.event-category {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e5e5;
}
.event-category.category-musica {
  background-color: rgba(102, 16, 242, 0.1);
  color: #6610f2;
}
.event-category.category-teatro {
  background-color: rgba(232, 62, 140, 0.1);
  color: #e83e8c;
}
.event-category.category-danza {
  background-color: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
}
.event-category.category-standup {
  background-color: rgba(253, 126, 20, 0.1);
  color: #fd7e14;
}
.event-category.category-mma {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.event-category.category-fiesta {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.event-category.category-convencion {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.event-category.category-cine_video {
  background-color: rgba(64, 64, 64, 0.1);
  color: #404040;
}
.event-category.category-var {
  background-color: #f5f5f5;
  color: #525252;
}

.event-info {
  padding: 1.25rem 1.25rem;
}
.event-info .event-title {
  font-size: 1rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.description-block {
  text-align: center;
}
.description-block .mes {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6610f2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.description-block .dia {
  font-size: 1.125rem;
  font-weight: 700;
  color: #6610f2;
  line-height: 1;
  display: block;
  margin: 0.125rem 0;
}
.description-block .ano {
  font-size: 0.75rem;
  color: #525252;
  font-weight: 400;
}
.description-block .description-header {
  font-size: 0.75rem;
  color: #525252;
  margin: 0;
}
.description-block .description-text {
  font-size: 0.875rem;
  color: #171717;
}
.description-block .description-longtext {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(102, 16, 242, 0.1);
  border-radius: 0.5rem;
  float: left;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.card-solid {
  border: none;
}
.card-solid .card-header {
  background-color: transparent;
  border-bottom: none;
}

.content-card-inner {
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 0;
}
.content-card-inner .card-body {
  padding: 1.5rem;
}

.search-container {
  padding: 1rem 1.5rem;
  background-color: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}
.search-container .input-group {
  max-width: 600px;
  margin: 0 auto;
}
.search-container .form-control {
  border-radius: 0.75rem 0 0 0.75rem;
  border: 1px solid #e5e5e5;
  padding: 0.75rem 1rem;
}
.search-container .form-control:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 3px rgba(102, 16, 242, 0.1);
}
.search-container .input-group-append .btn {
  border-radius: 0 0.75rem 0.75rem 0;
  border: 1px solid #e5e5e5;
  border-left: none;
  background-color: #ffffff;
}
.search-container .input-group-append .btn:hover {
  background-color: #f5f5f5;
}

.categories-container {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}
.categories-container .btn {
  margin: 0.25rem;
}

.card-stat,
.small-box {
  border-radius: 1rem;
  padding: 1.25rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}
.card-stat .card-stat__icon,
.card-stat .icon,
.small-box .card-stat__icon,
.small-box .icon {
  width: 48px;
  height: 48px;
  background-color: rgba(102, 16, 242, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #6610f2;
}
.card-stat .card-stat__value,
.card-stat .inner h3,
.small-box .card-stat__value,
.small-box .inner h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.25rem;
}
.card-stat .card-stat__label,
.card-stat .inner p,
.small-box .card-stat__label,
.small-box .inner p {
  font-size: 0.875rem;
  color: #525252;
  margin: 0;
}
.card-stat .card-stat__trend,
.small-box .card-stat__trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.card-stat .card-stat__trend.card-stat__trend--up,
.small-box .card-stat__trend.card-stat__trend--up {
  color: #22c55e;
}
.card-stat .card-stat__trend.card-stat__trend--down,
.small-box .card-stat__trend.card-stat__trend--down {
  color: #ef4444;
}

.card-stat__icon--primary,
.bg-primary .icon {
  background-color: rgba(102, 16, 242, 0.1);
  color: #6610f2;
}

.card-stat__icon--success,
.bg-success .icon {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.card-stat__icon--warning,
.bg-warning .icon {
  background-color: rgba(253, 126, 20, 0.1);
  color: #fd7e14;
}

.card-stat__icon--info,
.bg-info .icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.card-stat__icon--danger,
.bg-danger .icon {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

a.wrapper-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.wrapper-link:hover {
  text-decoration: none;
  color: inherit;
}

.form-control {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 0.5rem;
  border-color: #d4d4d4;
  padding: 0.5rem 0.75rem;
  transition: all 0.15s ease;
}
.form-control:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 0.2rem rgba(102, 16, 242, 0.15);
}
.form-control::placeholder {
  color: #737373;
}

.input-group .input-group-text {
  background-color: #f5f5f5;
  border-color: #d4d4d4;
  color: #525252;
}
.input-group .form-control:focus + .input-group-append .input-group-text,
.input-group .form-control:focus ~ .input-group-append .input-group-text {
  border-color: #6610f2;
}

.icheck-primary > input:checked + label::before,
.icheck-primary > input:checked + input[type=hidden] + label::before {
  background-color: #6610f2;
  border-color: #6610f2;
}

.icheck-pink > input:checked + label::before,
.icheck-pink > input:checked + input[type=hidden] + label::before {
  background-color: #e83e8c;
  border-color: #e83e8c;
}

.form-control.custom-select,
.custom-select {
  border-radius: 0.5rem;
  border-color: #d4d4d4;
}
.form-control.custom-select:focus,
.custom-select:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 0.2rem rgba(102, 16, 242, 0.15);
}

label {
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.form-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: #404040;
}

.is-valid .form-control, .is-valid.form-control {
  border-color: #22c55e;
}
.is-valid .form-control:focus, .is-valid.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.15);
}

.is-invalid .form-control, .is-invalid.form-control {
  border-color: #ef4444;
}
.is-invalid .form-control:focus, .is-invalid.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.15);
}

.alert {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 0.5rem;
  border: none;
  padding: 0.75rem 1rem;
}
.alert.alert-warning {
  background-color: rgba(253, 126, 20, 0.15);
  color: #c35a02;
  border-left: 4px solid #fd7e14;
}
.alert.alert-info {
  background-color: rgba(59, 130, 246, 0.15);
  color: #0a59da;
  border-left: 4px solid #3b82f6;
}
.alert.alert-primary {
  background-color: rgba(102, 16, 242, 0.15);
  color: #510bc4;
  border-left: 4px solid #6610f2;
}
.alert.alert-success {
  background-color: rgba(34, 197, 94, 0.15);
  color: #17843f;
  border-left: 4px solid #22c55e;
}
.alert.alert-danger {
  background-color: rgba(239, 68, 68, 0.15);
  color: #eb1515;
  border-left: 4px solid #ef4444;
}

.badge {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35em 0.65em;
  border-radius: 0.375rem;
}
.badge.badge-primary {
  background-color: #6610f2;
}
.badge.badge-pink {
  background-color: #e83e8c;
}
.badge.badge-warning {
  background-color: #fd7e14;
  color: #ffffff;
}

.badge-cat-teatro {
  background-color: #3b82f6;
  color: #ffffff;
}

.badge-cat-musica {
  background-color: #6f42c1;
  color: #ffffff;
}

.badge-cat-danza {
  background-color: #fd7e14;
  color: #ffffff;
}

.badge-cat-standup {
  background-color: #22c55e;
  color: #ffffff;
}

.badge-cat-convencion {
  background-color: #6610f2;
  color: #ffffff;
}

.badge-cat-fiesta {
  background-color: #e83e8c;
  color: #ffffff;
}

.badge-cat-mma {
  background-color: #fd7e14;
  color: #ffffff;
}

.badge-cat-generico {
  background-color: #e5e5e5;
  color: #404040;
  border: 1px solid #a3a3a3;
}

.btn-cat-teatro {
  color: #3b82f6;
  border-color: #3b82f6;
}
.btn-cat-teatro:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-cat-musica {
  color: #6f42c1;
  border-color: #6f42c1;
}
.btn-cat-musica:hover {
  background-color: #6f42c1;
  color: #ffffff;
}

.btn-cat-danza {
  color: #fd7e14;
  border-color: #fd7e14;
}
.btn-cat-danza:hover {
  background-color: #fd7e14;
  color: #ffffff;
}

.btn-cat-standup {
  color: #22c55e;
  border-color: #22c55e;
}
.btn-cat-standup:hover {
  background-color: #22c55e;
  color: #ffffff;
}

.btn-cat-convencion {
  color: #6610f2;
  border-color: #6610f2;
}
.btn-cat-convencion:hover {
  background-color: #6610f2;
  color: #ffffff;
}

.btn-cat-fiesta {
  color: #e83e8c;
  border-color: #e83e8c;
}
.btn-cat-fiesta:hover {
  background-color: #e83e8c;
  color: #ffffff;
}

.btn-cat-mma {
  color: #fd7e14;
  border-color: #fd7e14;
}
.btn-cat-mma:hover {
  background-color: #fd7e14;
  color: #ffffff;
}

.btn-cat-generico {
  color: #525252;
  border-color: #a3a3a3;
}
.btn-cat-generico:hover {
  background-color: #e5e5e5;
  color: #262626;
}

.main-header {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #262626;
  min-height: 64px;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.main-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header.navbar-white, .main-header.navbar-light {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom-color: #e5e5e5;
}
.main-header.navbar-white .navbar-brand, .main-header.navbar-light .navbar-brand {
  color: #171717;
}
.main-header.navbar-white .nav-link, .main-header.navbar-light .nav-link {
  color: #525252;
}
.main-header.navbar-white .nav-link:hover, .main-header.navbar-light .nav-link:hover {
  color: #171717;
}
.main-header.navbar-dark {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom-color: #262626;
}
.main-header.navbar-dark .navbar-brand {
  color: #ffffff;
}
.main-header.navbar-dark .nav-link,
.main-header.navbar-dark .navbar-nav .nav-link {
  color: #a3a3a3;
}
.main-header.navbar-dark .nav-link:hover, .main-header.navbar-dark .nav-link.active,
.main-header.navbar-dark .navbar-nav .nav-link:hover,
.main-header.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}
.main-header .container,
.main-header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .main-header .container,
  .main-header .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.layout-navbar-fixed .main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 0;
}
.navbar-brand .brand-image {
  height: 32px;
  width: auto;
  max-height: 33px;
}
.navbar-brand .brand-text {
  font-weight: 700;
}
.navbar-brand:hover {
  color: #ffffff;
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
.navbar-nav .nav-link {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a3a3a3;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.15s ease;
  position: relative;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #ffffff;
}
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #6610f2;
  border-radius: 9999px;
}

@media (min-width: 1024px) {
  .navbar-nav {
    gap: 2rem;
  }
}
.navbar-nav .btn {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
}
.navbar-nav .btn-outline-info {
  color: #6610f2;
  border-color: #6610f2;
}
.navbar-nav .btn-outline-info:hover {
  background-color: #6610f2;
  border-color: #6610f2;
  color: #ffffff;
}

.navbar-nav.ml-auto,
.navbar-nav.navbar-no-expand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .form-control-navbar,
.navbar .form-control {
  border-radius: 0.75rem;
  border: 1px solid #d4d4d4;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
.navbar .form-control-navbar:focus,
.navbar .form-control:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 3px rgba(102, 16, 242, 0.1);
  outline: none;
}

.navbar-dark .form-control-navbar {
  background-color: #262626;
  border-color: #404040;
  color: #ffffff;
}
.navbar-dark .form-control-navbar::placeholder {
  color: #a3a3a3;
}
.navbar-dark .form-control-navbar:focus {
  background-color: #262626;
  border-color: #6610f2;
}

.navbar-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 4px;
  position: absolute;
  right: 5px;
  top: 9px;
  border-radius: 9999px;
}

.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
}
.navbar-toggler:focus {
  outline: none;
}
@media (min-width: 1024px) {
  .navbar-toggler {
    display: none;
  }
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

.navbar .dropdown-menu {
  border-radius: 0.75rem;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 15px -3px rgba(10, 10, 10, 0.1), 0 4px 6px -4px rgba(10, 10, 10, 0.1);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.navbar .dropdown-menu .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
}
.navbar .dropdown-menu .dropdown-item.active, .navbar .dropdown-menu .dropdown-item:active {
  background-color: #6610f2;
  color: #ffffff;
}
.navbar .dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
  border-color: #e5e5e5;
}

.main-sidebar {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #171717;
}
.main-sidebar.sidebar-light-primary, .main-sidebar.sidebar-light-pink {
  background-color: #ffffff;
  border-right: 1px solid #e5e5e5;
}

.brand-link {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8125rem 0.5rem;
}
.brand-link .brand-image {
  max-height: 33px;
}
.sidebar-light-primary .brand-link, .sidebar-light-pink .brand-link {
  border-bottom-color: #e5e5e5;
}

.sidebar {
  padding-top: 0;
}
.sidebar .nav-link {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 0;
  transition: all 0.15s ease;
}
.sidebar .nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}
.sidebar .nav-link > .nav-icon {
  color: rgba(255, 255, 255, 0.6);
  width: 1.6rem;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.sidebar .nav-link > p {
  margin-bottom: 0;
}
.sidebar .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #e83e8c;
  box-shadow: none;
}
.sidebar .nav-item > .nav-link.active > .nav-icon {
  color: #ffffff;
}
.sidebar-light-primary .sidebar .nav-link, .sidebar-light-pink .sidebar .nav-link {
  color: #404040;
}
.sidebar-light-primary .sidebar .nav-link:hover, .sidebar-light-pink .sidebar .nav-link:hover {
  color: #171717;
  background-color: #f5f5f5;
}
.sidebar-light-primary .sidebar .nav-link > .nav-icon, .sidebar-light-pink .sidebar .nav-link > .nav-icon {
  color: #737373;
}
.sidebar-light-primary .sidebar .nav-item > .nav-link.active, .sidebar-light-pink .sidebar .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #e83e8c;
}
.sidebar-light-primary .sidebar .nav-item > .nav-link.active > .nav-icon, .sidebar-light-pink .sidebar .nav-item > .nav-link.active > .nav-icon {
  color: #ffffff;
}

.nav-treeview {
  background-color: rgba(10, 10, 10, 0.2);
  padding-left: 0;
}
.nav-treeview > .nav-item > .nav-link {
  padding-left: 2.5rem;
  font-size: 0.875rem;
}
.nav-treeview > .nav-item > .nav-link.active {
  background-color: rgba(232, 62, 140, 0.3);
  color: #ffffff;
}
.sidebar-light-primary .nav-treeview, .sidebar-light-pink .nav-treeview {
  background-color: #f5f5f5;
}
.sidebar-light-primary .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-pink .nav-treeview > .nav-item > .nav-link.active {
  background-color: rgba(232, 62, 140, 0.15);
  color: #e83e8c;
}

.nav-header {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  padding: 1rem 1rem 0.5rem;
}
.sidebar-light-primary .nav-header, .sidebar-light-pink .nav-header {
  color: #737373;
}

.user-panel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.user-panel .info {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.user-panel .info a {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
}
.sidebar-light-primary .user-panel, .sidebar-light-pink .user-panel {
  border-bottom-color: #e5e5e5;
}
.sidebar-light-primary .user-panel .info a, .sidebar-light-pink .user-panel .info a {
  color: #262626;
}

.sidebar-mini.sidebar-collapse .main-sidebar:hover {
  width: 250px;
}

.main-footer {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  background-color: #171717 !important;
  color: #a3a3a3 !important;
  border-top: none !important;
  padding: 2rem 1.5rem !important;
}
.main-footer a {
  color: #a3a3a3 !important;
  text-decoration: none;
  transition: all 0.15s ease;
}
.main-footer a:hover {
  color: #ffffff !important;
}
.main-footer h5 {
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.main-footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.main-footer ul li {
  margin-bottom: 0.5rem;
}
.main-footer p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #a3a3a3;
}
.main-footer .row {
  margin-bottom: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.main-footer .col ul, .main-footer .col.links ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.main-footer .float-right,
.main-footer > strong,
.main-footer > span {
  color: #737373;
}

.main-footer.text-xs {
  font-size: 0.875rem;
  padding: 1rem;
}
.main-footer.text-xs .row {
  margin-bottom: 1rem;
}

.main-footer.footer-light {
  background-color: #ffffff;
  color: #525252;
  border-top: 1px solid #e5e5e5;
}
.main-footer.footer-light a {
  color: #525252;
}
.main-footer.footer-light a:hover {
  color: #6610f2;
}
.main-footer.footer-light h5 {
  color: #171717;
}

.main-footer .float-right {
  color: #737373;
  font-size: 0.875rem;
}

.main-footer > span {
  color: #737373;
  font-size: 0.75rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__description {
  font-size: 0.875rem;
  line-height: 1.625;
  color: #a3a3a3;
}

.footer__column-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: none;
  transition: all 0.15s ease;
}
.footer__links a:hover {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #262626;
}
.footer__bottom:only-child {
  padding-top: 0;
  border-top: none;
}

.footer__copyright {
  font-size: 0.875rem;
  color: #737373;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3a3a3;
  background-color: #262626;
  border-radius: 9999px;
  transition: all 0.15s ease;
}
.footer__social-link:hover {
  color: #ffffff;
  background-color: #404040;
}

.footer--simple .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer--simple .footer__links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.content-wrapper {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #fafafa;
}
.layout-top-nav .content-wrapper {
  margin-left: 0;
}

.content-header {
  padding: 1.5rem;
  padding-bottom: 0;
}
.content-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.content-header .breadcrumb {
  font-size: 0.875rem;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}
.content-header .breadcrumb a {
  color: #525252;
}
.content-header .breadcrumb a:hover {
  color: #6610f2;
}
.content-header .breadcrumb .breadcrumb-item.active {
  color: #737373;
}

.content {
  padding: 1.5rem;
}
.content > .container,
.content > .container-fluid {
  padding: 0;
}

.content-card-inner {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
  padding: 0;
  margin-bottom: 1rem;
}

.table {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.table th {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #525252;
  border-bottom-width: 2px;
}
.table td {
  vertical-align: middle;
}

.table-hover tbody tr:hover {
  background-color: rgba(102, 16, 242, 0.05);
}

.dataTables_wrapper {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.dataTables_wrapper .dataTables_filter input {
  border-radius: 0.5rem;
  border: 1px solid #d4d4d4;
  padding: 0.375rem 0.75rem;
}
.dataTables_wrapper .dataTables_filter input:focus {
  border-color: #6610f2;
  outline: none;
}
.dataTables_wrapper .dataTables_length select {
  border-radius: 0.5rem;
  border: 1px solid #d4d4d4;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 0.5rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #6610f2 !important;
  border-color: #6610f2 !important;
  color: #ffffff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #f5f5f5 !important;
  border-color: #d4d4d4 !important;
}

.login-page,
.register-page {
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.login-box {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.login-box .card,
.register-box .card {
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 15px -3px rgba(10, 10, 10, 0.1), 0 4px 6px -4px rgba(10, 10, 10, 0.1);
  overflow: hidden;
}

.card-outline {
  border-top: 3px solid #6610f2;
}
.card-outline.card-primary {
  border-top-color: #6610f2;
}

.login-box .card-header,
.register-box .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 2rem 1.5rem 1rem;
  text-align: center;
}
.login-box .card-header a,
.register-box .card-header a {
  display: inline-block;
}
.login-box .card-header img,
.register-box .card-header img {
  height: 40px;
  width: auto;
}

.login-box .card-body,
.register-box .card-body {
  padding: 1.5rem;
}

.nav-tabs {
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #525252;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: all 0.15s ease;
}
.nav-tabs .nav-link:hover {
  color: #171717;
  border-bottom-color: #d4d4d4;
}
.nav-tabs .nav-link.active {
  color: #6610f2;
  border-bottom-color: #6610f2;
}

.tab-content .tab-pane {
  padding-top: 1rem;
}

.input-group {
  margin-bottom: 1rem;
}
.input-group .form-control {
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem 0 0 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.15s ease;
}
.input-group .form-control:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 3px rgba(102, 16, 242, 0.1);
  outline: none;
}
.input-group .form-control::placeholder {
  color: #a3a3a3;
}
.input-group .input-group-append .input-group-text {
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-left: none;
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 0 1rem;
  color: #737373;
}

.input-group:focus-within .input-group-text {
  border-color: #6610f2;
}

.login-box .btn-primary,
.register-box .btn-primary {
  background-color: #6610f2;
  border-color: #6610f2;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: all 0.15s ease;
}
.login-box .btn-primary:hover,
.register-box .btn-primary:hover {
  background-color: #510bc4;
  border-color: #4d0abb;
}
.login-box .btn-primary:focus,
.register-box .btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(102, 16, 242, 0.25);
}

.btn-block {
  width: 100%;
}

.login-box .alert,
.register-box .alert {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.alert-info {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #0b63f3;
}

.alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #eb1515;
}

.alert-success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #1a9a49;
}

.icheck-primary {
  margin: 0.5rem 0;
}
.icheck-primary label {
  font-size: 0.875rem;
  color: #525252;
  cursor: pointer;
}

.login-box a,
.register-box a {
  color: #6610f2;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
.login-box a:hover,
.register-box a:hover {
  color: #4709ac;
}

.social-auth-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}
.social-auth-links .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  border-radius: 0.75rem;
}

.light-mode.login-page, .light-mode.register-page {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.register-page .login-box {
  max-width: 480px;
}
.register-page .card-body {
  padding: 2rem;
}

.input-group-text {
  cursor: pointer;
}
.input-group-text:hover {
  background-color: #e5e5e5;
}
.input-group-text .fas.fa-lock,
.input-group-text .fas.fa-hashtag,
.input-group-text .fas.fa-eye,
.input-group-text .fas.fa-eye-slash {
  width: 16px;
  text-align: center;
}

.sidebar-light-pink .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-dark-pink .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #e83e8c;
  color: #ffffff;
}
.sidebar-light-pink .nav-sidebar > .nav-item > .nav-link.active > .nav-icon,
.sidebar-dark-pink .nav-sidebar > .nav-item > .nav-link.active > .nav-icon {
  color: #ffffff;
}

.dashboard-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
  padding: 1.25rem;
  margin-bottom: 1rem;
  height: 100%;
}
.dashboard-card .card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}
.dashboard-card .card-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}
.dashboard-card .card-subtitle {
  font-size: 0.875rem;
  color: #737373;
}

.stat-widget {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
}
.stat-widget .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
}
.stat-widget .stat-icon.bg-indigo {
  background-color: #6610f2;
}
.stat-widget .stat-icon.bg-pink {
  background-color: #e83e8c;
}
.stat-widget .stat-icon.bg-orange {
  background-color: #fd7e14;
}
.stat-widget .stat-icon.bg-success {
  background-color: #22c55e;
}
.stat-widget .stat-content {
  flex: 1;
}
.stat-widget .stat-content .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}
.stat-widget .stat-content .stat-label {
  font-size: 0.875rem;
  color: #525252;
}

.ventas-chart-container {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
  padding: 1.25rem;
}
.ventas-chart-container .chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.ventas-chart-container .chart-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.ventas-chart-container .chart-header .chart-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #171717;
}
.ventas-chart-container .chart-header .chart-period {
  font-size: 0.875rem;
  color: #737373;
}

.ultimas-ventas {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
  overflow: hidden;
}
.ultimas-ventas .card-header {
  background-color: transparent;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 1.25rem;
}
.ultimas-ventas .card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.ultimas-ventas .table {
  margin-bottom: 0;
}
.ultimas-ventas .table th {
  background-color: #fafafa;
  font-size: 0.875rem;
  font-weight: 700;
  color: #525252;
  border-bottom: 1px solid #e5e5e5;
  padding: 0.75rem 1rem;
}
.ultimas-ventas .table td {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  vertical-align: middle;
}
.ultimas-ventas .table tbody tr {
  border-bottom: 1px solid #f5f5f5;
}
.ultimas-ventas .table tbody tr:last-child {
  border-bottom: none;
}
.ultimas-ventas .table tbody tr:hover {
  background-color: #fafafa;
}

.proximas-funciones {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(10, 10, 10, 0.05);
  overflow: hidden;
}
.proximas-funciones .card-header {
  background-color: transparent;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 1.25rem;
}
.proximas-funciones .card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.proximas-funciones .funcion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #f5f5f5;
}
.proximas-funciones .funcion-item:last-child {
  border-bottom: none;
}
.proximas-funciones .funcion-item .funcion-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #171717;
}
.proximas-funciones .funcion-item .funcion-date {
  font-size: 0.875rem;
  color: #e83e8c;
}
.proximas-funciones .funcion-item .funcion-progress {
  font-size: 0.875rem;
  color: #525252;
}
.proximas-funciones .funcion-item .funcion-countdown {
  font-size: 0.875rem;
  color: #737373;
  white-space: nowrap;
}

.light-mode {
  background-color: #fafafa;
}
.light-mode .content-wrapper {
  background-color: #fafafa;
}
.light-mode .main-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

:root {
  --indigo: #6610f2;
  --pink: #e83e8c;
  --orange: #fd7e14;
  --purple: #6f42c1;
  --primary: #6610f2;
  --accent: #e83e8c;
  --font-family: Google Sans, Google Sans Flex, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

body {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wrapper,
.content-wrapper,
.main-header,
.main-sidebar,
.main-footer {
  font-family: "Google Sans", "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.main-sidebar .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #e83e8c;
  color: #ffffff;
}
