@import url("https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700;800&display=swap");
@import url("dairyIcons.css");
:root {
  --primary-color: #0b2ea2;
  --primary-light: #6323b2;
  --secondary-color: #03dac6;
  --accent-color: #ff4081;
  --background: #fff;
  --surface: #ffffff;
  --error: #b00020;
  --text-primary: #212121;
  --text-secondary: #757575;
  --text-hint: #9e9e9e;
  --warning: #ffc107;
  --success: #4caf50;
  --danger: #f44336;
}
body {
  font-family: "karla", sans-serif !important;
  font-size: 15px;
  background-color: var(--background);
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for bottom nav */
  color: var(--text-primary);
  max-width: 600px;
  border-left: 1px solid #3029a9;
  border-right: 1px solid #5e24b1;
}
a {
  text-decoration: none;
  color: #222222;
}
::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
::-webkit-scrollbar-corner {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid transparent;
  background-clip: padding-box;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.05),
    inset 1px 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.05),
    inset 1px 1px 0 rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar {
  width: 0px;
  height: 2px;
  background-color: #ffffff;
}
::-webkit-scrollbar-thumb {
  height: 50px;
  background: hsla(0, 0%, 53.3%, 0.4);
}

/* Status bar styling */
.status-bar {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  padding: 4px 15px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

/* App header */
.app-header {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  padding: 15px;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.app-header-icon {
  font-size: 20px;
}

.app-header-title {
  font-weight: 600;
  font-size: 18px;
}

.header-btn {
  color: white;
  padding: 0;
}

.menu-btn {
  margin-right: 0.75rem;
  color: white;
  padding: 0;
  line-height: 17px;
}

.menu-icon {
  font-size: 24px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background-color: var(--surface);
  z-index: 1001;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  padding: 20px;
}

.sidebar-menu {
  padding: 10px 0;
}

.sidebar-menu-item {
  padding: 7px 20px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color 0.2s;
  position: relative;
}

.sidebar-menu-item:hover {
  background-color: rgba(98, 0, 238, 0.05);
}

.sidebar-menu-item i {
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary-color);
}

.sidebar-menu-item.active {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
  font-weight: 500;
}

.sidebar-menu-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--primary-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

/* User profile */
.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(98, 0, 238, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--primary-color);
  box-shadow: 0 20px 20px #89888826;
  border: 2px solid #2545af;
}

.profile-edit-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 9px !important;
}

.points-icon {
  color: #ffd700;
}

.signout-btn {
  width: 75%;
}

/* Search card */
.search-card {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 10px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Section headers */
.section-header {
  padding: 0 15px;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.section-header::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: var(--primary-color);
  margin-right: 8px;
  border-radius: 2px;
}

/* Route cards */
.route-card {
  background-color: var(--surface);
  border-radius: 9px;
  margin: 10px 15px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--secondary-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.route-card:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Offer cards */
.offer-card {
  background-color: var(--surface);
  border-radius: 9px;
  margin: 10px 15px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  border: none;
  transition: transform 0.2s;
}

.offer-card:active {
  transform: scale(0.98);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(255, 64, 129, 0.1) 50%
  );
  border-radius: 0 0 0 100px;
}

.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: white;
  padding: 6px 12px;
  border-radius: 0 0 0 9px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Bottom navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface);
  display: flex;
  justify-content: space-around;
  padding: 12px 0 8px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  max-width: 480px;
  margin: 0 auto;
  z-index: 1000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  font-size: 11px;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-item.active {
  color: var(--primary-color);
}

.nav-item i {
  font-size: 22px;
  margin-bottom: 4px;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Form styling */
.form-control,
.form-select {
  border-radius: 9px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  background-color: #f1f4f9;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-group-text {
  border-radius: 9px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(187, 134, 252, 0.2);
}

.form-check-input{
  cursor: pointer;
}
.form-switch .form-check-input{
  width: 3.3em;
  height: 1.5em;
}
.form-check-input:checked {
  background-color: var(--success);
  border-color: var(--success);
}
.form-label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--text-primary);
}
.input-group .form-control.is-invalid ~ #togglePassword {
  display: none;
}
.is-invalid.border-end-0 {
  border-right: 1px solid var(--bs-danger) !important;
}
button#togglePassword:focus-visible {
  outline: unset;
}

.btn-app {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: 9px;
  border: none;
  width: 100%;
  box-shadow: 0 4px 8px rgba(98, 0, 238, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-app:hover,
.btn-app:focus {
  color: white !important;
}
.btn-app:active {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(98, 0, 238, 0.2);
  color: white;
}

/* Scrollable horizontal sections */
.scroll-container {
  display: flex;
  overflow-x: auto;
  padding: 5px 15px 20px 15px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-snap-type: x mandatory;
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.scroll-item {
  flex: 0 0 auto;
  width: 160px;
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 9px;
  margin-right: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(187, 134, 252, 0.1);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.scroll-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-light)
  );
  border-radius: 0 0 9px 9px;
}

/* Route visualization */
.route-visual {
  position: relative;
  padding-left: 19px;
  margin-bottom: 10px;
}

.route-point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.route-point.start {
  background-color: var(--primary-color);
  top: 0;
}

.route-point.end {
  background-color: var(--secondary-color);
  bottom: 0;
}

.route-line {
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
}

.route-cities {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 50px;
}

/* Page content */
.page-content {
  padding: 15px;
}

.page-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Empty state */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-state-icon {
  font-size: 60px;
  color: var(--primary-light);
  margin-bottom: 20px;
  opacity: 0.8;
}

.empty-state-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* List items */
.list-item {
  background-color: var(--surface);
  border-radius: 9px;
  margin-bottom: 15px;
  padding: 15px;
  box-shadow: 0 2px 2px rgb(0 0 0 / 15%);
  transition: transform 0.2s;
}

.list-item:active {
  transform: scale(0.98);
}

/* Badge */
.status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
}

.status-badge.confirmed {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.status-badge.completed {
  background-color: var(--success);
  color: #fff;
}

.status-badge.cancelled {
  background-color: var(--danger);
  color: #fff;
}

/* Action buttons */
.text-primary {
  color: rgb(98 0 239) !important;
}
.text-error-color {
  color: var(--error);
}
.action-btn {
  border-radius: 9px;
  font-size: 14px;
}

.primary-action-btn {
  background-color: var(--primary-color);
  color: white;
}
.primary-action-btn:hover,
.primary-action-btn:active {
  background-color: var(--primary-color);
  color: white;
}

.secondary-action-btn {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
}
.secondary-action-btn:hover,
.secondary-action-btn:focus {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.tertiary-action-btn {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.danger-action-btn,.danger-action-btn:hover {
  background-color: var(--danger);
  color: #fff;
}
.cancel-action-btn,.cancel-action-btn:hover {
  background-color: #e5e5e5;
  color: #000;
}

/* Feature cards */
.feature-card {
  border-radius: 9px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.feature-icon-container {
  width: 50px;
  height: 50px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px auto;
}

.feature-icon-container.primary {
  background: linear-gradient(135deg, #bb86fc, #6200ee);
}

.feature-icon-container.secondary {
  background: linear-gradient(135deg, #03dac6, #018786);
}

.feature-icon-container.accent {
  background: linear-gradient(135deg, #ff4081, #c51162);
}

.feature-icon-container.warning {
  background: linear-gradient(135deg, #ffab40, #ff6d00);
}

.feature-icon {
  color: white;
  font-size: 24px;
}

.feature-title {
  font-size: 14px;
  margin-bottom: 0;
}

/* Stats card */
.stats-card {
  border-radius: 9px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
}

.stat-value.primary {
  color: var(--primary-color);
}

.stat-value.secondary {
  color: var(--secondary-color);
}

.stat-value.accent {
  color: var(--accent-color);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Payment methods */
.payment-method-card {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.payment-card-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
}

.payment-card-number {
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.payment-card-details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
}

.payment-card-name {
  text-transform: uppercase;
  font-weight: 500;
}

.payment-card-expiry {
  font-weight: 500;
}

/* Settings */
.settings-section {
  margin-bottom: 25px;
}

.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: var(--surface);
  border-radius: 9px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.settings-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.settings-item-icon.primary {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
}

.settings-item-icon.secondary {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.settings-item-icon.accent {
  background-color: rgba(255, 64, 129, 0.1);
  color: var(--accent-color);
}

.settings-item-icon.warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning);
}

.settings-item-icon.danger {
  background-color: rgba(244, 67, 54, 0.1);
  color: var(--danger);
}

.settings-item-content {
  flex: 1;
}

.settings-item-title {
  font-weight: 500;
  margin-bottom: 2px;
}

.settings-item-description {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Notifications */
.notification-item {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.notification-item.unread {
  border-left: 4px solid var(--primary-color);
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.notification-icon.primary {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
}

.notification-icon.secondary {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.notification-icon.accent {
  background-color: rgba(255, 64, 129, 0.1);
  color: var(--accent-color);
}

.notification-icon.warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning);
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 500;
  margin-bottom: 5px;
}

.notification-message {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.notification-time {
  font-size: 12px;
  color: var(--text-hint);
}

/* Help & Support */
.help-category {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.help-category:active {
  transform: scale(0.98);
}

.help-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.help-category-icon.primary {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
}

.help-category-icon.secondary {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.help-category-icon.accent {
  background-color: rgba(255, 64, 129, 0.1);
  color: var(--accent-color);
}

.help-category-content {
  flex: 1;
}

.help-category-title {
  font-weight: 500;
  margin-bottom: 2px;
}

.help-category-description {
  font-size: 12px;
  color: var(--text-secondary);
}

.faq-item {
  background-color: #f1f4f9;
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  padding-top: 10px;
  display: none;
}

.faq-answer.show {
  display: block;
}

/* Offers & Rewards */
.input-group .btn {
  border-radius: 9px;
}
.reward-card {
  background-color: #f1f4f9a1;
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  width: calc(100% - 20px);
  margin-left: 10px;
}

.reward-icon {
  width: 50px;
  height: 50px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  font-size: 35px;
}
.reward-icon.success {
  color: #0fec53;
}
.reward-icon.warning {
  color: #ffc107;
}
.reward-icon.total{
  color: #009688;
}

.reward-content {
  flex: 1;
}

.reward-title {
  font-weight: 500;
  color: var(--primary-color);
}

.reward-description {
  font-size: 20px;
  color: #000;
  margin-bottom: -5px;
}

.reward-expiry {
  font-size: 11px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.reward-expiry i {
  margin-right: 5px;
}

.progress-container {
  height: 8px;
  background-color: rgba(98, 0, 238, 0.1);
  border-radius: 9px;
  margin: 15px 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 9px;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* inline to main */
.bg-primary-light {
  background-color: rgba(98, 0, 238, 0.1);
}

.btn-light-2 {
  background-color: rgba(98, 0, 238, 0.1);
  border-radius: 9px;
  color: var(--primary-color);
  font-size: 14px;
}
.btn-light-2:hover,
.btn-light-2:focus {
  background-color: rgba(98, 0, 238, 0.1) !important;
  color: var(--primary-color);
}
.btn-light-3 {
  background-color: rgba(3, 218, 198, 0.1);
  border-radius: 9px;
  color: var(--secondary-color);
  font-size: 14px;
}
.btn-light-3:hover,
.btn-light-3:focus {
  background-color: rgba(3, 218, 198, 0.1) !important;
  color: var(--secondary-color);
}
.position-rt {
  top: 10px;
  right: 10px;
  color: var(--text-secondary);
}

.icon-btn {
  width: 32px;
  height: 32px;
}
.icon-50 {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gradient-1 {
  background: linear-gradient(135deg, #bb86fc, #6200ee);
}
.gradient-2 {
  background: linear-gradient(135deg, #03dac6, #018786);
}
.gradient-3 {
  background: linear-gradient(135deg, #ff4081, #c51162);
}
.gradient-4 {
  background: linear-gradient(135deg, #ffab40, #ff6d00);
}
.gradient-5 {
  background: linear-gradient(135deg, #6200ee, #bb86fc);
}
.gradient-6 {
  background: linear-gradient(135deg, #03dac6, #018786);
}
.fs-120 {
  font-size: 120px;
}
.scrollbar-osahan {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.user-avatar-100 {
  width: 100px;
  height: 100px;
  font-size: 40px;
}

/* Text colors */
.bg-primary-color {
  background-color: var(--primary-color);
}
.text-primary-color {
  color: var(--primary-color);
}

.text-secondary-color {
  color: var(--secondary-color);
}

.text-accent-color {
  color: var(--accent-color);
}

.text-muted {
  color: var(--text-secondary);
}

.text-hint {
  color: var(--text-hint);
}

/* Icon sizes */
.fs-11 {
  font-size: 11px;
}
.fs-12 {
  font-size: 12px;
  font-weight: 700;
}
.fs-14 {
  font-size: 14px;
}
.fs-22 {
  font-size: 22px;
}
.fs-24 {
  font-size: 24px;
}
.fs-32 {
  font-size: 32px;
}
.icon-sm {
  font-size: 14px;
}

.icon-md {
  font-size: 18px;
}

.icon-lg {
  font-size: 24px;
}

/* Authentication Pages Styles */
.auth-container {
  max-width: 100%;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.app-logo {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto;
}

.auth-form {
  width: 100%;
}

.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-color);
  border: none;
}

.social-btn:hover {
  background-color: #e9e9e9;
}

.strength-bar {
  height: 4px;
  flex: 1;
  background-color: #e9e9e9;
  border-radius: 2px;
}

.strength-bar.active {
  background-color: var(--primary-color);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto;
}

/* Additions for bus listing, details, and booking pages */

/* Bus Listing Styles */
.bus-item {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}

.bus-card {
  background-color: #fff;
  border-radius: 9px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bus-item:hover .bus-card {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-lined {
  position: relative;
  height: 2px;
  background-color: var(--primary-color);
  opacity: 0.3;
}

.journey-lined::before,
.journey-lined::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
}

.journey-lined::before {
  left: 0;
}

.journey-lined::after {
  right: 0;
}

.amenity-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 9px;
  background-color: var(--light-color);
  font-size: 12px;
  color: var(--text-color);
  margin-right: 4px;
}

.amenity-badge i {
  font-size: 10px;
  margin-right: 2px;
}

/* Bus Details Styles */
.bus-header {
  height: 200px;
  overflow: hidden;
  border-radius: 9px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-badge {
  background-color: #fff;
  border-radius: 9px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.journey-stops {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.departure-stop,
.arrival-stop {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: relative;
}

.departure-stop {
  margin-top: 6px;
}

.arrival-stop {
  margin-bottom: 6px;
}

.journey-line {
  width: 2px;
  height: 40px;
  background-color: var(--primary-color);
  opacity: 0.5;
  margin: 4px 0;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 9px;
  padding: 12px;
  min-width: 70px;
  text-align: center;
}

.amenity-item i {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.amenity-item span {
  font-size: 12px;
}

.bus-photo-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.pickup-radio,
.dropoff-radio {
  width: 20px;
}

.cancellation-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.review-item {
  border-left: 3px solid var(--primary-color);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ddd;
}

.bottom-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

/* Not Available Styles */
.empty-state-icon {
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.5;
}

.date-suggestion-item {
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 9px;
  padding: 12px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.date-day {
  font-size: 18px;
  font-weight: bold;
}

.date-month {
  font-size: 12px;
  color: var(--text-muted);
}

.date-price {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 4px;
}

.route-suggestion-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 9px;
  padding: 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.route-cities {
  font-weight: 500;
}

.route-price {
  color: var(--primary-color);
  font-weight: 500;
  text-align: right;
}

/* Select Seat Styles */
.bus-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.seat-deck-selector {
  font-size: 14px;
}

.steering-wheel i {
  font-size: 28px;
  color: #888;
}

.door-text {
  border: 1px dashed #888;
  padding: 5px 11px;
  border-radius: 9px;
}

.seats-grid {
  padding: 10px;
}

.seat-row {
  width: 100%;
}

.seat {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seat.available {
  background-color: #ffffff;
  border: 1px solid #ddd;
  color: #333;
}

.seat.selected {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.seat.booked {
  background-color: #f5f5f5;
  color: #aaa;
  cursor: not-allowed;
  border: 1px solid #eee;
}

.seat-gap {
  width: 80px;
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 9px;
  margin-right: 6px;
}

.legend-dot.available {
  background-color: #ffffff;
  border: 1px solid #ddd;
}

.legend-dot.selected {
  background-color: var(--primary-color);
}

.legend-dot.booked {
  background-color: #f5f5f5;
  border: 1px solid #eee;
}
/* Verification Styles */
.booking-progress {
  position: relative;
}

.progress-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: 2px solid #ddd;
  margin-bottom: 4px;
}

.progress-connector {
  height: 2px;
  background-color: #ddd;
  flex-grow: 1;
  margin-top: 12px;
  z-index: 1;
}

.progress-step.active .step-dot {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.progress-step.completed .step-dot {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.progress-connector.completed {
  background-color: var(--primary-color);
}

.seat-tag {
  background-color: var(--primary-color);
  color: white;
  border-radius: 9px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
}

/* Payment Styles */
.saved-card-option,
.payment-option {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 9px;
  margin-bottom: 8px;
}

.saved-card-option:hover,
.payment-option:hover {
  border-color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.05);
}

.card-icon,
.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background-color: #f5f5f5;
  color: var(--text-color);
  font-size: 18px;
}

/* Success Page Styles */
.success-icon {
  font-size: 72px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.booking-card,
.trip-card {
  border-left: 4px solid var(--primary-color);
}

.additional-info {
  border-left: 3px solid var(--primary-color);
}

.social-share a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ajLogin .bottom-nav,.aj404 .bottom-nav{
  display: none;
}
.aj404Icons {
  margin-top: 51%;
}
.aj404Icons i {
  color: var(--primary-color);
  font-size: 60px;
}
.ajReturn{
  font-weight: 800;
  color: var(--primary-color);
}
.ajSpecialBg{
  background: #f1f4f9;
}
.ajQuickAccess {
  text-align: center;
}
.ajQuickIconWrap i {
  padding: 15px;
  font-size: 24px;
  color: var(--primary-color);
  border-radius: 50px;
  background: #f1f4f9;
}
.ajTopActionBtn{
  font-size: 15px;
  padding: 6px 15px;
}
.ajListItem{
  background: #f1f4f9;
}
.ajTitle{
  font-size: 17px;
}
a.ajBtnDelete, a.ajBtnEdit {
  padding: 8px;
  font-weight: bold;
  font-size: 18px;
}
.ajBtnEdit{
  color: var(--primary-color);
}
.ajBtnDelete{
  color: var(--danger);
}
.form-check li{
  list-style: none;
}
.ajBottomPopup{
  display: none;
  bottom: 0px;
  /* max-height: 71vh; */
  max-height: 93vh;
  height: auto;
  overflow-y: auto;
  border-radius: 20px 20px 0px 0px;
  top: unset;
  transition: bottom 2s ease-in-out 4s;
}
.ajBottomPopup .modal-dialog {
  margin: auto;
}
.ajLoader{
  width:100%;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 1060;
  position: fixed;
  top: 0%;
  left: 0%;
}
.ajCircleLoader {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ajCircle {
  position: absolute;
  border: 3.5px solid transparent;
  border-radius: 50%;
  animation: rotate 3s infinite ease-in-out;
}
.ajCircle-1 {
  width: 80px;
  height: 80px;
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  animation-delay: -0.15s;
}
.ajCircle-2 {
  width: 60px;
  height: 60px;
  border-top-color: var(--primary-light);
  border-right-color: var(--primary-light);
  animation-delay: -0.3s;
}
.ajCircle-3 {
  width: 40px;
  height: 40px;
  border-top-color: var(--bs-orange);
  border-right-color: var(--bs-orange);
  animation-delay: -0.45s;
}
.ajCircle-4 {
  width: 20px;
  height: 20px;
  border-top-color: var(--bs-success-text);
  border-right-color: var(--bs-success-text);
  animation-delay: -0.6s;
}
.ajOverly{
  background: #ffeb3b42;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .80;
  z-index: 1056;
}
.ajLoaderWrap {
  display: none;
}
@keyframes rotate {
  50% {
    transform: rotate(360deg);
  }
}
.ajAlertMsg {
  position: fixed;
  right: 4px;
  top: 70px;
  z-index: 1069;
  margin-left: 4px;
  display: none;
  min-width: 260px;
}
.ajAlertMsg i{
  font-size: 1.6rem;
}
.ajAlertMsg .alert{
  padding: 8px 10px;
  border: none;
}
.ajAlertMsg .alert-success {
  background: #04aa6d;
  color: #fff;
}
.ajAlertMsg .alert-error {
  background: #ff685d;
  color: #fff;
}
.ajCustomerAvtar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #8585858f;
  color: #fdfeff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.ajViewBtn {
  font-size: 22px;
  color: #2e2aa9;
}
.ajCustomerItem:active {
  transform: scale(0.98);
}
.tree-padding {
  --spacing: 1.5rem;
  --radius: 8px;
  --dark-blue: #918ce7;
}
.tree-padding li {
  display: block;
  position: relative;
  padding-left: calc(2 * var(--spacing) - var(--radius) - 2px);
}
.tree-padding ul {
  margin-left: calc(var(--radius) - var(--spacing));
  padding-left: 0;
}
.tree-padding > li > ul {
  border-left: 2px solid var(--dark-blue);
}
.tree-padding ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: -42px;
  left: -2px;
  width: calc(var(--spacing) + 5px);
  height: calc(var(--spacing) + 45px);
  border: solid var(--dark-blue);
  border-width: 0 0 2px 2px;
}
.tree-padding li::after{
  content: '';
  display: block;
  position: absolute;
  top: calc(var(--spacing) / 1 - var(--radius));
  left: calc(var(--spacing) - var(--radius) - 1px);
  width: calc(2 * var(--radius));
  height: calc(2 * var(--radius));
  border-radius: 50%;
  background: #3829aa;
}
.tree-padding .list-item{
  margin-bottom: 20px;
  padding: 2px 15px
}
.tree-padding > li::before {
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: 22px;
  width: calc(var(--spacing) + -8px);
  height: calc(var(--spacing) + -14px);
  border: solid #ddd;
  border-width: 0 0 2px 2px;
}
.ajCustomerDetailWrap,.ajCustomerItem:active{
  background: #f1f4f9;
  transform: none !important;
}
.ajCustomerActionLink{
  display: flex!important;
  justify-content: space-between!important;
  align-items: center;
}
.ajCustomerActionLink a{
  font-size: 17px;
}
.ajEditColor{
  color: var(--primary-color);
}
.ajDeleteColor{
  color: var(--danger);;
}
.ajWhatsappColor{
  color: #25d366;
}
.ajTabsNav a {
  text-align: center;
  color: #0b2ea2c7;
  padding: 8px 12px;
}
.ajTabsNav a.active, .ajTabsNav a:hover {
  font-weight: bold;
  border-bottom: 2px solid;
  color: var(--primary-color);
}
.ajTabContent{
  display: none;
}
.ajTabContent.active{
  display: block;
}
.ajOverview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #fcfdffd6;
  border-radius: 9px;
  margin-bottom: 20px;
  border: 1px solid #4327ac17;
  box-shadow: 0 2px 2px rgb(0 0 0 / 15%);
}
.ajOverview-item h6{
  margin-bottom: 0;
  flex: 1;
}
.ajOverItem-icon{
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 22px;
}
.ajOverItem-icon.warn{
  background-color: #fff38b;
    color: #ff9800;
}
.ajOverItem-icon.paid{
  background-color: #abff4a9c;
  color: #006804;
}
.ajOverItem-icon.total{
  background-color: #73fcef8c;
  color: #236f68;
}
.ajCardEnd {
  font-weight: 700;
}
.ajSummaryView{
  background-color: #f1f4f9;
  padding: 5px 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgb(0 0 0 / 15%);
}
.ajSummaryView .ajViewItemTotal{
  display: flex!important;
  justify-content: space-between!important;
  font-size: 16px;
}
.ajSummaryView .ajViewItem {
  display: flex;
  width: 100%;
  align-items: center;
  font-weight: 700!important;
}
.ajSummaryView .ajViewItem div {
  min-width: 43%;
}
.ajListItem del{
  font-size: 16px;
  color: #6f6f6f;
}
.ajSummaryCard {
  padding: 2px 8px !important;
  background-color: #e6e5ef;
}
.ajSummaryItem{
  display: flex!important;
  justify-content: space-between!important;
  align-items: center;
}
.ajSummaryCard:last-child hr {
  display: none;
}
.ajBillList .ajAction{
  display: flex!important;
  align-items: center;
}
.ajBillList .status-badge {
  padding: 2px 9px;
  font-size: 12px;
}
.ajBillList .ajListItem{
  padding: 8px 12px;
}
ul.ajStaffZoneList {
  list-style: none;
  padding-left: 15px;
}
ul.ajStaffZoneList li {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
ul.ajStaffZoneList li ul {
  list-style: revert;
}
.ajBillItem{
  position: relative;
  background: #f1f4f9;
}
.ajBillItem hr {
  margin: 4px 0px;
}
.ajBillItem .itemAction{
  display: flex!important;
  align-items: center!important;
  justify-content: space-between;
  margin-top: 0.25rem!important;
}
.ajBillItem .itemAction .ajItemDelete{
  color: red;
  padding: initial;
  font-size: 15px;
  font-weight: 500;
}
.ajBillItem .itemAction .ajItemEdit{
  color: #4603ff;
}
.ajBillItem .itemAction .ajItemView{
  color: #2e2aa9;
}
.ajBillItem .itemAction .itemStatus{
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    padding: 6px 12px;
    border-radius: 0px 9px 0 9px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.ajBillItem .itemAction .itemStatus.paid{
  background: #28ba2d;
}
.ajBillItem .itemAction .itemStatus.pending{
  background: #fc0d0d;
}
.ajInvoiceHead {
  text-align: center;
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}
.ajInvoiceHead p{
  margin: 0;
}
.ajInvoiceTitle {
    border-top: 1px solid #a5a3a3;
    border-bottom: 1px solid #a5a3a3;
    padding: 8px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
}
.ajInvoiceDetail{
  display: flex!important;
  align-items: center!important;
  justify-content: space-between!important;
  padding: 10px 8px;
}
.ajInvoiceTable table{
  margin-bottom: 0px;
}
.ajInvoiceTable table th,.ajInvoiceTable table td{
  border: none;
}
.ajInvoiceTotalWrap {
  padding: 8px;
  margin-top: 20px;
  border-top: 2px solid #8d8d8d;
}
.ajInvoiceItem {
  display: flex;
  align-items: center!important;
  justify-content: flex-end;
}
.ajInvoiceItem span:first-child {
  font-size: 16px;
  margin-right: 30px;
  margin-bottom: 5px;
}
.ajInvoiceItem span:last-child {
  font-weight: 800;
}
.ajBillInvoice.zig-zag {
  position: relative;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 1px 42px rgb(0 0 0 / 40%);
}
.zig-zag:before {
  display: block;
  content: "";
  width: 100%;
  height: 20px;
  background: linear-gradient(45deg, #fff 25%, transparent 25%), linear-gradient(-45deg, #fff 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: -50px;
  position: absolute;
  top: -20px;
  left: 0;
}
.zig-zag:after {
  display: block;
  content: "";
  width: 100%;
  height: 20px;
  background: linear-gradient(135deg, #fff 25%, transparent 25%), linear-gradient(-135deg, #fff 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: -50px;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.ajInviceDateWiseList .ajSummaryCard{
  padding: 0px 8px !important;
  background-color: transparent;
}
.input-group.ajSelect2Inline{
  flex-wrap: nowrap;
}
.select2-container--default .select2-selection--single{
  background-color: #f1f4f9;
}
.ajBottomPopup .mb-3 .select2-container, .ajSelectFullWidth .select2-container{
  width: 100% !important;
}
.datepicker td, .datepicker th {
  width: 38px;
  height: 38px;
  border-radius: 30px;
}
.datepicker .datepicker-switch, .datepicker .next, .datepicker .prev, .datepicker tfoot tr th,
.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
  cursor: pointer;
  background: #607d8b;
  color: #fff;
}
.datepicker .datepicker-switch {
  width: 200px;
}
.datepicker .next, .datepicker .prev {
    font-weight: 800;
    font-size: 16px;
}
th.dow {
  padding-top: 10px;
}
/**Inventory Vasant**/
.ajEntryCardWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.ajEntryMinus, .ajEntryPlus {
  margin-right: 5px;
  cursor: pointer;
}
.ajInventoryUpdate{
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
  text-align: center;
}
.ajEntryMinus > i.bi.status-badge, .ajEntryPlus > i.bi.status-badge {
  font-size: 18px;
  padding: 0px 5px;
  font-weight: bold;
}
input.ajInventoryUpdate::-webkit-outer-spin-button,
input.ajInventoryUpdate::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input.ajInventoryUpdate {
-moz-appearance: textfield;
}

.input-group.ajEntryInputGroup {
  align-items: center;
  justify-content: end;
  max-width: 120px;
  margin-left: 8px;
}
.input-group.ajEntryInputGroup input {
  background: transparent;
  border: none !important;
  max-width: 50px;
  padding: 2px 2px;
}
.ajSummaryItem .ajEntryPlus{
  margin-right: 0px !important;
}
.status-badge.pending {
  background-color: #ffc107;
  color: #fff;
}
.select2-dropdown{
  z-index: 1060;
}
.page-content.diary-page-content .page-scroll-container {
  display: flex;
  overflow-x: auto;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.page-content.diary-page-content .page-scroll-item, 
.page-content.customer-page-content .page-scroll-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.page-content.diary-page-content .accordion-button,
.page-content.customer-page-content .accordion-button {
  background: #f1f4f9;
}
.page-content.diary-page-content .accordion, .page-content.diary-page-content .accordion *, .page-content.diary-page-content .accordion-button, .page-content.diary-page-content .accordion-collapse,
.page-content.customer-page-content .accordion, .page-content.customer-page-content .accordion *, .page-content.customer-page-content .accordion-button, .page-content.customer-page-content .accordion-collapse {
  -webkit-transition: none !important;
  transition: none !important;
  prefers-reduced-motion: no-preference;
  transform: scale(1) !important;
}

.page-content.diary-page-content .accordion-item.customer-entry-item .completed-status {
  display: none;
  margin-right: 5px;
}
.page-content.diary-page-content .accordion-item.customer-entry-item.completed-entry > .accordion-header > .accordion-button > div > .completed-status {
  display: inline;
}
.page-content.diary-page-content .accordion-item.customer-entry-item .complete-entry-btn {
  margin-left: auto;
  margin-right: 5px;
  display: flex !important;
  margin-top: 12px;
  margin-bottom: -10px;
}
.page-content.diary-page-content .accordion-item .accordion-body button.complete-entry-btn {
  display: none !important;
}
.page-content.diary-page-content .accordion-item .accordion-body.ajEntryUnsaved button.complete-entry-btn {
  display: block !important;
}
.diary-search-wrap { position: relative; }
.diary-search-wrap .diary-search-btn { position: absolute; top: 0; right: 0; }
.diary-search-wrap .diary-search-btn button.diary-search-edit-btn { padding: 5px 5px 0 0; border: none !important; }
.diary-search-wrap:not(.diary-search-edit) .diary-search-btn button .diary-search-close-icon { display: none;}
.diary-search-wrap.diary-search-edit .diary-search-btn button .diary-search-edit-icon { display: none;}
.diary-search-wrap:not(.diary-search-edit) .diary-search-field,
.diary-search-wrap:not(.diary-search-edit) .diary-search-field + .select2-container { display: none;}
.diary-search-wrap.diary-search-edit .diary-search-value { display: none;}