/* Main application styles */
:root {
  --primary-color: #2E8B57;
  --secondary-color: #6B7280;
  --success-color: #10B981;
  --danger-color: #EF4444;
  --warning-color: #F59E0B;
  --info-color: #3B82F6;
  --light-color: #F9FAFB;
  --dark-color: #1F2937;
}

/* Global styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #236B42;
  border-color: #236B42;
}

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

/* Custom utility classes */
.fw-bold-300 { font-weight: 300; }
.fw-bold-500 { font-weight: 500; }
.fw-bold-700 { font-weight: 700; }

.size12 { font-size: 12px; }
.size14 { font-size: 14px; }
.size16 { font-size: 16px; }
.size20 { font-size: 20px; }
.size28 { font-size: 28px; }
.size44 { font-size: 44px; }

.text-62 { color: #626262; }
.text-70 { color: #707070; }
.text-83 { color: #838383; }
.text-a9 { color: #a9a9a9; }
.text-1f { color: #1f1f1f; }
.text-2c { color: #2c2c2c; }
.text-37 { color: #373737; }

.border-a9 { border-color: #a9a9a9; }

.border-radius-15 { border-radius: 15px; }
.border-radius-16 { border-radius: 16px; }
.border-radius-30 { border-radius: 30px; }
.border-radius-top-right-16 { border-top-right-radius: 16px; }
.border-radius-bottom-right-16 { border-bottom-right-radius: 16px; }

.mt-25 { margin-top: 2.5px; }

/* Search results styling */
.search-container {
  position: relative;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Responsive fixes */
@media (max-width: 576px) {
  .search-results {
    max-height: 200px;
  }
}

/* Form styling */
.form--auth .form-control {
  padding: 12px 16px;
  font-size: 14px;
}

.form--auth .btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Hover effects */
.hover-0:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

/* Carousel fixes */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Custom spacing */
.py-lg-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-lg-4 { padding-left: 1.5rem; padding-right: 1.5rem; }