/* ----------------------------------------------------------------------------
 * Easy!Appointments - Public Layout Styles
 * ---------------------------------------------------------------------------- */
:root {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  background: #f8f9fb;
}

#public-header {
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

#public-header .public-logo {
  max-height: 48px;
  display: block;
}

#public-header .public-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #212529;
}

#public-header .public-logo-subtitle {
  font-size: 0.9rem;
  color: #6c757d;
}

#public-main {
  min-height: calc(100vh - 160px);
  padding: 2rem 0;
}

#public-footer {
  background: #ffffff;
  border-top: 1px solid #e9ecef;
}

#public-footer p {
  margin: 0;
  color: #6c757d;
}

/* Navigation CTA Buttons */
.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-cta .btn {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0.375rem;
}

.nav-cta .btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #ffffff;
}

.nav-cta .btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  color: #ffffff;
  text-decoration: none;
}

.nav-cta .btn-outline-primary {
  color: #0d6efd;
  border: 1px solid #0d6efd;
  background-color: transparent;
}

.nav-cta .btn-outline-primary:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #ffffff;
  text-decoration: none;
}

.public-card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 12px 30px rgba(31, 45, 61, 0.08);
}

@media (max-width: 767.98px) {
  #public-header .btn {
    width: 100%;
  }

  #public-header .d-flex.gap-2 {
    width: 100%;
    justify-content: center;
  }

  #public-main {
    padding: 1.5rem 0;
  }
}
