body.pad-bottom {
  padding-bottom: 300px;
}

.navbar-nav {
  z-index: 1000;
}

.sidebar-dark {
  background-color: #333;
}

.nav-item {
  z-index: 1;
}

.sidebar.toggled .nav-item .collapse, .sidebar.toggled .nav-item .collapsing {
  z-index: 1000;
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.pagination .current {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #333;
  background-color: #cecece;
  border: 1px solid #dddfeb;
}
.pagination .ellipse {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #4e73df;
  background-color: #fff;
  border: 1px solid #dddfeb;
}
.pagination li {
  margin-right: 5px;
}
.pagination li span, .pagination li a {
  border: none;
  border-radius: 5px;
  color: #17323b;
}
.pagination li span:hover, .pagination li a:hover {
  color: #17323b;
}
.pagination li.active span {
  background-color: #17323b;
  color: #fff;
  border: none;
}
.pagination .prev {
  display: none !important;
}
.pagination .next {
  display: none !important;
}

.shortcut-item {
  background-color: #f3f3f3;
  padding: 30px;
  border-radius: 30px;
  margin-bottom: 30px;
}
.shortcut-item .shortcut-icon {
  text-align: center;
  font-size: 2em;
}
.shortcut-item .shortcut-title {
  display: block;
  text-align: center;
}

.container-fluid.no-padding {
  padding: 0;
}
.container-fluid.no-padding .page-title {
  padding-left: 1.25rem;
}

.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 0;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all;
}
.popup-wrapper .popup-inner {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  width: 100%;
  max-width: 700px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.popup-wrapper .popup-inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}
.popup-wrapper .popup-inner h1, .popup-wrapper .popup-inner h2, .popup-wrapper .popup-inner h3 {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
}
.popup-wrapper .close-popup {
  font-size: 1.2em;
  position: absolute;
  right: 15px;
  top: 15px;
}
.popup-wrapper .close-popup span {
  cursor: pointer;
  color: #000;
}
.popup-wrapper.active {
  visibility: visible;
  opacity: 1;
}

.bg-gradient-primary {
  background-color: #333;
  background-image: linear-gradient(180deg, #222 70%, #666 100%);
  background-size: cover;
}

.login-page .logo {
  max-width: 100%;
  width: 200px;
  margin: 0 auto 15px auto;
  display: block;
}
.login-page .subtitle {
  display: block;
  margin-top: -20px;
  margin-bottom: 15px;
}

.btn-primary {
  background-color: #640014;
  border-color: #640014;
}
.btn-primary:hover {
  background-color: #97001e;
  border-color: #97001e;
}

.cursor-pointer {
  cursor: pointer;
}

#content-wrapper {
  overflow-x: unset !important;
}

.validation-summary-errors ul {
  margin: 0;
  padding: 0;
}
.validation-summary-errors ul li {
  list-style: none;
}

.fixed-brand-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #333;
}

.sidebar-brand {
  background-color: #333;
}

.sidebar-brand-image img {
  height: 50px;
}

.sidebar-toggled .sidebar-brand-image img {
  height: auto;
}

/* Global Equestrian Group Branding and Horses Page Styling */
:root {
  --ge-primary: #1a472a;
  --ge-secondary: #c4953a;
  --ge-accent: #2d5a3b;
  --ge-light: #f8f9fb;
  --ge-dark: #0f2a1c;
  --ge-gradient: linear-gradient(135deg, var(--ge-primary) 0%, var(--ge-accent) 100%);
}

.text-ge-primary {
  color: var(--ge-primary) !important;
}

.text-ge-secondary {
  color: var(--ge-secondary) !important;
}

.bg-ge-primary {
  background-color: var(--ge-primary) !important;
}

.bg-ge-secondary {
  background-color: var(--ge-secondary) !important;
}

.badge-ge-primary {
  color: white;
  background: var(--ge-gradient);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.btn-ge-primary {
  background: var(--ge-gradient);
  border-color: var(--ge-primary);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-ge-primary:hover {
  background: linear-gradient(135deg, var(--ge-accent) 0%, var(--ge-primary) 100%);
  border-color: var(--ge-accent);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(26, 71, 42, 0.3);
}

.btn-outline-ge-primary {
  color: var(--ge-primary);
  border-color: var(--ge-primary);
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline-ge-primary:hover, .btn-outline-ge-primary.active {
  background: var(--ge-gradient);
  border-color: var(--ge-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(26, 71, 42, 0.2);
}

.ge-page-title {
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--ge-primary);
  display: flex;
  align-items: center;
}

@media (min-width: 480px) {
  .horses-container {
    padding: 0 1.5rem;
  }
}

.ge-horses-header {
  background: linear-gradient(135deg, rgba(248, 249, 251, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 71, 42, 0.1);
}

.ge-controls {
  gap: 1rem;
  min-width: 280px;
}
@media (min-width: 768px) {
  .ge-controls {
    max-width: 320px;
  }
}

.ge-search-input .input-group-text {
  border: 1px solid #dee2e6;
  border-right: none;
}
.ge-search-input .form-control {
  border-left: none;
}
.ge-search-input:focus-within .input-group-text,
.ge-search-input:focus-within .form-control {
  border-color: var(--ge-primary);
  box-shadow: 0 0 0 0.2rem rgba(26, 71, 42, 0.15);
}

.ge-select {
  border: 1px solid #dee2e6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ge-select:focus {
  border-color: var(--ge-primary);
  box-shadow: 0 0 0 0.2rem rgba(26, 71, 42, 0.15);
}

.ge-view-toggle .btn {
  border-radius: 0.25rem;
  border: 1px solid var(--ge-primary);
}
.ge-view-toggle .btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.ge-view-toggle .btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ge-loading-spinner {
  padding: 3rem;
}

.rotating {
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ge-error-state {
  padding: 2rem;
}

.horse-item-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.horse-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(26, 71, 42, 0.15);
}
.horse-item-card .card-header {
  background: var(--ge-gradient);
  border-bottom: none;
  padding: 1rem 1.25rem;
}
.horse-item-card .card-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
}

.horse-info .info-item {
  display: flex;
  align-items: center;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0;
}
.horse-info .info-item:last-child {
  margin-bottom: 0;
}
.horse-info .info-item i {
  width: 18px;
  text-align: center;
}
.horse-info .info-item strong {
  color: var(--ge-primary);
}
.horse-info .price-item {
  background: rgba(26, 71, 42, 0.05);
  border-radius: 6px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
.horse-info .price-item i {
  font-size: 1.1em;
}

.ge-table-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ge-horses-table {
  margin-bottom: 0;
  font-size: 0.8em;
}

.ge-table-header {
  background: var(--ge-gradient);
  color: white;
}
.ge-table-header th {
  border: none;
  font-weight: 600;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 0.75rem;
}

.horse-row {
  border-bottom: 1px solid rgba(26, 71, 42, 0.1);
  transition: background-color 0.2s ease;
}
.horse-row:hover {
  background-color: rgba(26, 71, 42, 0.03);
}
.horse-row:last-child {
  border-bottom: none;
}

.horse-name-cell {
  padding: 1rem 0.75rem;
}
.horse-name-cell strong {
  color: var(--ge-primary);
  font-weight: 600;
}

.price-cell {
  font-weight: 600;
  font-size: 1em;
  padding: 1rem 0.75rem;
}

.badge-outline-primary {
  color: var(--ge-primary);
  border: 1px solid var(--ge-primary);
  background: transparent;
}

.badge-outline-secondary {
  color: #6c757d;
  border: 1px solid #6c757d;
  background: transparent;
}

.card-footer {
  background: rgba(248, 249, 251, 0.8);
  border-top: 1px solid rgba(26, 71, 42, 0.1);
}

.filter-controls-group {
  width: 100%;
}

.filter-controls {
  width: 100%;
}
.filter-controls .input-group,
.filter-controls select {
  width: 100% !important;
}
.filter-controls .select2-container--default .select2-search--inline .select2-search__field::placeholder {
  color: #333;
}

.ge-view-toggle {
  width: 100%;
}
.ge-view-toggle .btn {
  flex: 1;
}

@media (max-width: 768px) {
  .ge-page-title {
    font-size: 1.8rem;
  }
  .ge-horses-header {
    padding: 1rem;
  }
  .ge-controls {
    align-items: stretch !important;
  }
  .horse-item-card {
    margin-bottom: 1.5rem;
  }
  .ge-view-toggle {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .horse-info .info-item {
    font-size: 0.9rem;
  }
  .card-body {
    padding: 0.75rem;
  }
}
.modal-header.bg-ge-primary {
  background: var(--ge-gradient) !important;
}

#horseDetailsModal .modal-dialog {
  max-width: 600px;
}
#horseDetailsModal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
}
#horseDetailsModal .horse-item-card {
  box-shadow: none;
  border: none;
}
#horseDetailsModal .horse-item-card .card-header {
  background: transparent !important;
  color: var(--ge-primary) !important;
  border-bottom: 1px solid rgba(26, 71, 42, 0.1);
}
#horseDetailsModal .horse-item-card .card-header .card-title {
  color: var(--ge-primary) !important;
  font-size: 1.3rem;
}

.clickable-row {
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.clickable-row:hover {
  background-color: rgba(26, 71, 42, 0.05) !important;
  transform: scale(1.001);
  cursor: pointer;
}
.clickable-row:active {
  transform: scale(0.999);
}

.price-slider-container .custom-range {
  width: 100%;
  height: 6px;
  padding: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.price-slider-container .custom-range::-webkit-slider-track {
  height: 6px;
  background: linear-gradient(90deg, var(--ge-light) 0%, var(--ge-primary) 100%);
  border-radius: 3px;
}
.price-slider-container .custom-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--ge-primary);
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}
.price-slider-container .custom-range::-webkit-slider-thumb:hover {
  background: var(--ge-accent);
  transform: scale(1.1);
  box-shadow: 0 3px 6px rgba(26, 71, 42, 0.3);
}
.price-slider-container .custom-range::-moz-range-track {
  height: 6px;
  background: linear-gradient(90deg, var(--ge-light) 0%, var(--ge-primary) 100%);
  border-radius: 3px;
}
.price-slider-container .custom-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--ge-primary);
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}
.price-slider-container .custom-range::-moz-range-thumb:hover {
  background: var(--ge-accent);
  transform: scale(1.1);
  box-shadow: 0 3px 6px rgba(26, 71, 42, 0.3);
}
.price-slider-container .custom-range:focus {
  outline: none;
}
.price-slider-container .custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.2);
}
.price-slider-container .custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.2);
}
.price-slider-container input[type=number] {
  text-align: center;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
}
.price-slider-container input[type=number]:focus {
  border-color: var(--ge-primary);
  box-shadow: 0 0 0 0.2rem rgba(26, 71, 42, 0.15);
}

/*# sourceMappingURL=main.css.map */
