
/* Custom styles */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}

.hero {
  background: linear-gradient(135deg, #ff8f1f 0%, #e36414 72%, #b94700 100%);
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 14px 32px rgba(185, 71, 0, 0.24);
}

.size-card, .addon-card {
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.size-card:hover, .addon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.size-card .form-check-input:checked ~ .card-body,
.addon-card .form-check-input:checked ~ .card-body {
  background-color: #f8f9fa;
  border-color: #007bff;
}

.form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.addons-container {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
}

/* Admin sidebar styles */
.sidebar {
  position: sticky;
  height: calc(100vh - 61px);
  padding: 1rem 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  overflow-y: auto;
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
}

.sidebar .nav-link:hover {
  color: #007bff;
  background-color: #f8f9fa;
}

.sidebar .nav-link.active {
  color: #007bff;
  background-color: #e9ecef;
}



/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  body {
    padding: 20px;
    font-size: 12px;
  }
  .card {
    border: 1px solid #ddd;
  }
  .table th, .table td {
    padding: 4px;
  }
  .container {
    max-width: 100% !important;
  }
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0;
  padding-bottom: 0;
}

.brand-logo {
  display: block;
  width: 26px;
  height: 36px;
  min-width: 26px;
  max-width: 26px;
  aspect-ratio: 1393 / 1926;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.brand-logo-footer {
  width: 35px;
  height: 48px;
  min-width: 35px;
  max-width: 35px;
}

.brand-text-footer {
  font-size: 1.6rem;
}

.footer-details {
  line-height: 1.35;
  white-space: normal;
}

.card {
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,.125);
}

.btn {
  border-radius: 6px;
}

.input-group {
  width: auto;
}

.markdown-text p,
.markdown-text ul,
.markdown-text ol {
  margin-bottom: 0.5rem;
}

.markdown-text p:last-child,
.markdown-text ul:last-child,
.markdown-text ol:last-child {
  margin-bottom: 0;
}

.markdown-text ul,
.markdown-text ol {
  padding-left: 1.25rem;
}
