* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  height: 100dvh;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 {
  font-size: 24px;
}

header {
  padding: 40px 0 100px;
}

.logo {
  width: 90px;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.custom-top {
  margin-top: -70px;
}

.location {
  border: 1px solid var(--light);
  padding: 32px;
  border-radius: var(--rounded-lg);
  background-color: white;
  margin-bottom: 24px;
}

.location h3 {
  font-size: 18px;
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  border-radius: var(--rounded);
  padding: 10px;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary);
  color: white;
}

.size-6 {
  width: 24px;
  height: 24px;
}

.additional-block {
  position: relative;
  width: fit-content;
  max-width: 330px;
  padding: 10px 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  gap: 16px;
  text-decoration: none;
  font-size: 12px;
  color: gray;
  margin: 10px auto;
}

.additional-block .cls {
  font-size: 10px;
  color: #333;
  position: absolute;
  right: 15px;
  bottom: 5px;
  opacity: 0.5;
}

.additional-content {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.additional-content .additional-desc b {
  color: #333;
  margin-bottom: 2px;
  font-size: 13px;
}

.additional-via {
  font-size: 12px;
  color: #333;
}

/* Single Option UI Enhancements */
.single-option-container {
  position: relative;
  background: linear-gradient(135deg, #f8fdf8 0%, #e9fbe9 100%);
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 16px;
  border: 2px solid #d4edda;
  transition: all 0.3s ease;
}

.single-option-container:hover {
  border-color: var(--primary, #1d7b2b);
  box-shadow: 0 4px 12px rgba(29, 123, 43, 0.15);
}

.single-option-container .form-select.auto-selected {
  background-color: transparent;
  border: 2px solid var(--primary, #1d7b2b);
  color: var(--primary, #1d7b2b);
  font-weight: 600;
  cursor: default;
  background-image: none;
  padding-right: 40px;
}

.single-option-container .form-select.auto-selected:focus {
  border-color: var(--primary, #1d7b2b);
  box-shadow: 0 0 0 3px rgba(29, 123, 43, 0.1);
  outline: 0;
}

.single-option-container label {
  color: var(--primary, #1d7b2b);
  font-weight: 600;
  font-size: 0.9rem;
}

.auto-selected-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary, #1d7b2b);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 2;
}

.auto-selected-indicator .checkmark {
  font-size: 0.8rem;
  line-height: 1;
}

.auto-selected-indicator .auto-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auto-selected-animation {
  animation: autoSelectPulse 0.6s ease-out;
}

@keyframes autoSelectPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(29, 123, 43, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(29, 123, 43, 0.1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(29, 123, 43, 0);
  }
}

/* Enhanced form styling for single options */
.single-option-container .form-item {
  margin-bottom: 0;
}

.single-option-container .form-select {
  min-height: 48px;
}

/* All Auto-Selected Message */
.all-auto-selected-message {
  background: linear-gradient(135deg, #fff7e6 0%, #fef3cd 100%);
  border: 2px solid #ffc107;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.all-auto-selected-message.show {
  opacity: 1;
  transform: translateY(0);
}

.auto-message-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auto-message-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

.auto-message-text {
  flex: 1;
}

.auto-message-text h4 {
  color: #b8860b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.auto-message-text p {
  color: #996f00;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .logo {
    width: 70px;
    height: 70px;
  }

  .location {
    padding: 10px;
  }

  .additional-block {
    width: 100%;
  }

  .single-option-container {
    padding: 6px;
    margin-bottom: 12px;
  }

  .auto-selected-indicator {
    top: 8px;
    right: 8px;
    padding: 3px 6px;
  }

  .auto-selected-indicator .auto-text {
    display: none;
  }

  .single-option-container .form-select.auto-selected {
    padding-right: 35px;
  }

  .all-auto-selected-message {
    padding: 15px;
    margin: 15px 0;
  }

  .auto-message-content {
    gap: 12px;
  }

  .auto-message-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .auto-message-text h4 {
    font-size: 1rem;
  }

  .auto-message-text p {
    font-size: 0.85rem;
  }
}