/* Container */
.atp-pwa-install-wrap {
  margin: 20px 0;
  text-align: center; /* Centers the button */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* The Button - Professional Pill Shape */
.atp-pwa-install-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: #083B4C; /* Your Brand Dark Blue */
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(8, 59, 76, 0.2);
  transition: all 0.2s ease;
  text-decoration: none;
}

.atp-pwa-install-btn:hover {
  background: #062a36;
  transform: translateY(-1px);
}

.atp-pwa-install-btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* The iOS Instructions - Hidden by default, sleek dark card */
.atp-pwa-ios-hint {
  display: none; /* Hidden initially */
  margin-top: 15px;
  background: #2d3748; /* Dark grey/blue */
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Little arrow pointing up to the button */
.atp-pwa-ios-hint::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; 
  height: 0; 
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #2d3748;
}

.atp-pwa-ios-hint-title {
  font-weight: 700;
  color: #ffc83d; /* Gold accent for title */
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.atp-pwa-installed {
  display: none;
  padding: 10px;
  color: #083B4C;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.8;
}