/* Consolidated styles for QuoteAccepted and QuoteRejected pages */

.repair-confirmation-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100dvh;
  background-color: var(--page-background-color);
  color: var(--page-foreground-color);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
}

.hero-section {
  background-image: var(--hero-section-background-image);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--hero-section-foreground-color);
}

/* Header Styles */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.header .logo img {
  content: var(--hero-section-group-logo);
  height: 40px;
}

.hero-container {
  flex: 1;
  width: 800px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  text-align: left;
  padding: 16px;
}

.error-header {
  justify-content: flex-end;
}

.error-hero-section {
  height: 100dvh;
}

.powered-by {
  font-size: 12px;
}

.autoflow {
  font-weight: bold;
}

/* Main Content Styles */
.confirmation-content {
  padding: 20px 16px;
  flex: 1;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.confirmation-message {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Next Steps Section */
.next-steps-section {
  margin-bottom: 40px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.next-steps-section p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Footer Banner */
.footer-banner {
  background-color: var(--footer-section-background-color);
  color: var(--footer-section-foreground-primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 10px 10px 0 0;
}

.footer-content {
  max-width: 720px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.repairer-logo {
  content: '';
  background-image: var(--footer-section-repairer-logo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 0;
  width: 0;
  padding: 20px 20px;
  margin-right: 10px;
}

.banner-text h4 {
  font-size: 16px;
  margin: 0 0 5px 0;
  color: var(--footer-section-foreground-primary-color);
}

.banner-text p {
  font-size: 14px;
  margin: 0;
  color: var(--footer-section-foreground-secondary-color);
}

.banner-text .footer-secondary-text::after {
  content: var(--footer-banner-secondary-text);
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .hero-section {
    min-height: 300px;
  }

  .hero-container {
    width: 100%;
  }
}
