/**
 * Content Pages Styles - EasyFlyTrip
 * Used by: About, Terms, Privacy, Blog, Contact pages
 * Version: 2.0
 * Date: February 16, 2026
 */

/* ============================================
   GLOBAL CONTENT PAGE STYLES
   ============================================ */

/* Body adjustments for content pages */
body.content-page {
  padding-top: 70px !important;
  padding-bottom: 0 !important;
}

/* Remove fixed positioning for login outer */
#loginouter.content-container {
  position: inherit;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 130px;
}

#loginouterin {
  height: auto;
}

/* ============================================
   PAGE BANNER SECTION
   ============================================ */

.pagebanner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pagebanner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

.pagebanner span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px 30px;
  font-size: 28px;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
}

/* Hidden accessibility title for contact page */
.pagebanner .contact-title {
  display: block;
  position: absolute;
  left: -9999px;
}

/* ============================================
   PAGE CONTENT
   ============================================ */

.pagecontent {
  padding: 30px 0px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
}

.pagecontent h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.3;
}

.pagecontent h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2a2a2a;
}

.pagecontent h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.pagecontent p {
  margin-bottom: 15px;
}

.pagecontent ul,
.pagecontent ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.pagecontent li {
  margin-bottom: 8px;
}

.pagecontent a {
  color: var(--blue, #e52b30);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.pagecontent a:hover {
  opacity: 0.8;
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog hero banner */
.holidaybanner {
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin-bottom: 30px;
}

.holidabancontainer {
  padding: 0px 20px;
}

.holidaysearch {
  text-align: center;
}

/* Blog page H1 */
.blog-hero-title {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.73);
  padding: 20px 40px;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Blog listing section */
.holidaydestination {
  padding: 30px 0;
  background-color: #f9f9f9;
}

/* Blog post cards */
.offerboxes .col-lg-4 {
  cursor: pointer;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.offerboxes .col-lg-4:hover {
  transform: translateY(-5px);
}

.offerphotobox {
  height: 200px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.offerboxes .card {
  overflow: hidden;
  margin-top: 0px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.offerboxes .card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.offerboxes .card-body {
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  text-align: center;
  padding: 15px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offerboxes a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   CONTENT PAGE HEADER
   ============================================ */

.page-header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--blue, #e52b30);
}

.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.page-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  body.content-page {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  #loginouter.content-container {
    padding-bottom: 60px;
  }

  .pagebanner span {
    font-size: 20px;
    padding: 10px 20px;
    bottom: 10px;
    left: 10px;
  }

  .pagecontent {
    padding: 20px 15px;
    font-size: 13px;
  }

  .pagecontent h1 {
    font-size: 24px;
  }

  .pagecontent h2 {
    font-size: 20px;
  }

  .pagecontent h3 {
    font-size: 16px;
  }

  .blog-hero-title {
    font-size: 22px;
    padding: 15px 25px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .offerphotobox {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .blog-hero-title {
    font-size: 18px;
    padding: 12px 20px;
  }

  .offerboxes .col-lg-4 {
    margin-bottom: 15px;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact info rows */
.contacttabscont {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.contacttabscont:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Icon box */
.contacticons {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacticons i {
  color: #fff;
  font-size: 18px;
}

/* Label text (Address, Phone …) */
.contactlable {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

/* Content cell */
.contactcontent {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  vertical-align: middle;
}

.contactcontent a {
  color: var(--blue, #e52b30);
  text-decoration: none;
}

.contactcontent a:hover {
  text-decoration: underline;
}

/* Contact form send button */
.sendbutton {
  background-color: var(--blue, #e52b30);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
}

.sendbutton:hover {
  opacity: 0.88;
}

/* Card top spacing reset for contact layout */
.pagecontent .card {
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pagecontent .card-header {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  border-radius: 10px 10px 0 0 !important;
  padding: 15px 20px;
}

@media (max-width: 768px) {
  .contacttabscont {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .contacticons {
    width: 38px;
    height: 38px;
  }

  .contacticons i {
    font-size: 16px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  body.content-page {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .pagebanner {
    display: none;
  }

  #header,
  footer {
    display: none;
  }

  .pagecontent {
    padding: 0;
  }

  .pagecontent a {
    color: #000;
    text-decoration: none;
  }

  .pagecontent a::after {
    content: " (" attr(href) ")";
    font-size: 11px;
    color: #666;
  }
}

/* ============================================
   BOOTSTRAP-COMPATIBLE GRID + UTILITIES
   (DB content saved with Bootstrap classes)
   ============================================ */

/* --- Grid --- */
.pagecontent .container,
.pagecontent .container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
.pagecontent .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.pagecontent .row::after {
  content: "";
  clear: both;
  display: table;
}
.pagecontent [class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
/* xs (default) */
.pagecontent .col-1 {
  flex: 0 0 8.3333%;
  max-width: 8.3333%;
}
.pagecontent .col-2 {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}
.pagecontent .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.pagecontent .col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.pagecontent .col-5 {
  flex: 0 0 41.6667%;
  max-width: 41.6667%;
}
.pagecontent .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.pagecontent .col-7 {
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
}
.pagecontent .col-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}
.pagecontent .col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.pagecontent .col-10 {
  flex: 0 0 83.3333%;
  max-width: 83.3333%;
}
.pagecontent .col-11 {
  flex: 0 0 91.6667%;
  max-width: 91.6667%;
}
.pagecontent .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .pagecontent .col-sm-1 {
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
  }
  .pagecontent .col-sm-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .pagecontent .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pagecontent .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .pagecontent .col-sm-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .pagecontent .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pagecontent .col-sm-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .pagecontent .col-sm-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .pagecontent .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pagecontent .col-sm-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
  .pagecontent .col-sm-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }
  .pagecontent .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .pagecontent .col-md-1 {
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
  }
  .pagecontent .col-md-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .pagecontent .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pagecontent .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .pagecontent .col-md-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .pagecontent .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pagecontent .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .pagecontent .col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .pagecontent .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pagecontent .col-md-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
  .pagecontent .col-md-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }
  .pagecontent .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .pagecontent .col-lg-1 {
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
  }
  .pagecontent .col-lg-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .pagecontent .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pagecontent .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .pagecontent .col-lg-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .pagecontent .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pagecontent .col-lg-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .pagecontent .col-lg-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .pagecontent .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pagecontent .col-lg-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
  .pagecontent .col-lg-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }
  .pagecontent .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .pagecontent .col-xl-1 {
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
  }
  .pagecontent .col-xl-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .pagecontent .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .pagecontent .col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .pagecontent .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pagecontent .col-xl-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  .pagecontent .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .pagecontent .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* --- Bootstrap spacing utilities (m-*, p-*, mb-*, mt-*, etc.) --- */
.pagecontent .m-0 {
  margin: 0 !important;
}
.pagecontent .m-1 {
  margin: 4px !important;
}
.pagecontent .m-2 {
  margin: 8px !important;
}
.pagecontent .m-3 {
  margin: 16px !important;
}
.pagecontent .m-4 {
  margin: 24px !important;
}
.pagecontent .m-5 {
  margin: 48px !important;
}
.pagecontent .mt-0 {
  margin-top: 0 !important;
}
.pagecontent .mt-1 {
  margin-top: 4px !important;
}
.pagecontent .mt-2 {
  margin-top: 8px !important;
}
.pagecontent .mt-3 {
  margin-top: 16px !important;
}
.pagecontent .mt-4 {
  margin-top: 24px !important;
}
.pagecontent .mt-5 {
  margin-top: 48px !important;
}
.pagecontent .mb-0 {
  margin-bottom: 0 !important;
}
.pagecontent .mb-1 {
  margin-bottom: 4px !important;
}
.pagecontent .mb-2 {
  margin-bottom: 8px !important;
}
.pagecontent .mb-3 {
  margin-bottom: 16px !important;
}
.pagecontent .mb-4 {
  margin-bottom: 24px !important;
}
.pagecontent .mb-5 {
  margin-bottom: 48px !important;
}
.pagecontent .ml-0,
.pagecontent .ms-0 {
  margin-left: 0 !important;
}
.pagecontent .ml-3,
.pagecontent .ms-3 {
  margin-left: 16px !important;
}
.pagecontent .mr-0,
.pagecontent .me-0 {
  margin-right: 0 !important;
}
.pagecontent .mr-3,
.pagecontent .me-3 {
  margin-right: 16px !important;
}
.pagecontent .mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.pagecontent .p-0 {
  padding: 0 !important;
}
.pagecontent .p-1 {
  padding: 4px !important;
}
.pagecontent .p-2 {
  padding: 8px !important;
}
.pagecontent .p-3 {
  padding: 16px !important;
}
.pagecontent .p-4 {
  padding: 24px !important;
}
.pagecontent .p-5 {
  padding: 48px !important;
}
.pagecontent .pt-3 {
  padding-top: 16px !important;
}
.pagecontent .pb-3 {
  padding-bottom: 16px !important;
}
.pagecontent .py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.pagecontent .px-3 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* --- Bootstrap display utilities --- */
.pagecontent .d-flex {
  display: flex !important;
}
.pagecontent .d-block {
  display: block !important;
}
.pagecontent .d-inline {
  display: inline !important;
}
.pagecontent .d-inline-flex {
  display: inline-flex !important;
}
.pagecontent .d-none {
  display: none !important;
}
.pagecontent .flex-wrap {
  flex-wrap: wrap !important;
}
.pagecontent .align-items-center {
  align-items: center !important;
}
.pagecontent .align-items-start {
  align-items: flex-start !important;
}
.pagecontent .justify-content-center {
  justify-content: center !important;
}
.pagecontent .justify-content-between {
  justify-content: space-between !important;
}
.pagecontent .flex-column {
  flex-direction: column !important;
}
.pagecontent .gap-3 {
  gap: 16px !important;
}

/* --- Bootstrap text utilities --- */
.pagecontent .text-center {
  text-align: center !important;
}
.pagecontent .text-left,
.pagecontent .text-start {
  text-align: left !important;
}
.pagecontent .text-right,
.pagecontent .text-end {
  text-align: right !important;
}
.pagecontent .text-muted {
  color: #6c757d !important;
}
.pagecontent .text-primary {
  color: #1565c0 !important;
}
.pagecontent .text-success {
  color: #28a745 !important;
}
.pagecontent .text-danger {
  color: #dc3545 !important;
}
.pagecontent .text-white {
  color: #fff !important;
}
.pagecontent .text-dark {
  color: #212529 !important;
}
.pagecontent .font-weight-bold,
.pagecontent .fw-bold {
  font-weight: 700 !important;
}
.pagecontent .font-weight-600,
.pagecontent .fw-semibold {
  font-weight: 600 !important;
}
.pagecontent .small {
  font-size: 85%;
}
.pagecontent .lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- Bootstrap card --- */
.pagecontent .card {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
.pagecontent .card-body {
  padding: 20px;
}
.pagecontent .card-title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}
.pagecontent .card-text {
  margin-bottom: 12px;
}
.pagecontent .card-header {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}
.pagecontent .card-footer {
  background: #f8f9fa;
  border-top: 1px solid #eee;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
}
.pagecontent .card-img-top {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: auto;
  display: block;
}

/* --- Bootstrap table --- */
.pagecontent table,
.pagecontent .table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 14px;
}
.pagecontent .table th,
.pagecontent .table td,
.pagecontent table th,
.pagecontent table td {
  padding: 10px 12px;
  border: 1px solid #dee2e6;
  vertical-align: top;
  line-height: 1.5;
}
.pagecontent .table thead th,
.pagecontent table thead th {
  background: #1565c0;
  color: #fff;
  font-weight: 600;
  border-color: #1565c0;
}
.pagecontent .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.04);
}
.pagecontent .table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.pagecontent .table-bordered td,
.pagecontent .table-bordered th {
  border: 1px solid #dee2e6;
}
.pagecontent .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- Bootstrap badges & alerts --- */
.pagecontent .badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 10px;
  background: #1565c0;
  color: #fff;
}
.pagecontent .badge-primary,
.pagecontent .bg-primary {
  background: #1565c0 !important;
  color: #fff;
}
.pagecontent .badge-success,
.pagecontent .bg-success {
  background: #28a745 !important;
  color: #fff;
}
.pagecontent .badge-warning,
.pagecontent .bg-warning {
  background: #ffc107 !important;
  color: #212529;
}
.pagecontent .badge-danger,
.pagecontent .bg-danger {
  background: #dc3545 !important;
  color: #fff;
}
.pagecontent .alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid transparent;
}
.pagecontent .alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border-color: #bee5eb;
}
.pagecontent .alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}
.pagecontent .alert-warning {
  background: #fff3cd;
  color: #856404;
  border-color: #ffeeba;
}
.pagecontent .alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

/* --- Bootstrap list-group --- */
.pagecontent .list-group {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-radius: 6px;
  overflow: hidden;
}
.pagecontent .list-group-item {
  padding: 10px 16px;
  border: 1px solid #dee2e6;
  border-top: none;
  background: #fff;
}
.pagecontent .list-group-item:first-child {
  border-top: 1px solid #dee2e6;
  border-radius: 6px 6px 0 0;
}
.pagecontent .list-group-item:last-child {
  border-radius: 0 0 6px 6px;
}

/* --- Bootstrap button --- */
.pagecontent .btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    opacity 0.2s,
    background 0.2s;
}
.pagecontent .btn-primary {
  background: #1565c0;
  color: #fff;
  border-color: #1565c0;
}
.pagecontent .btn-primary:hover {
  background: #0d4e9e;
  color: #fff;
}
.pagecontent .btn-secondary {
  background: #6c757d;
  color: #fff;
  border-color: #6c757d;
}
.pagecontent .btn-outline-primary {
  background: transparent;
  color: #1565c0;
  border-color: #1565c0;
}
.pagecontent .btn-outline-primary:hover {
  background: #1565c0;
  color: #fff;
}
.pagecontent .btn-sm {
  padding: 5px 10px;
  font-size: 12px;
}
.pagecontent .btn-lg {
  padding: 12px 24px;
  font-size: 16px;
}
.pagecontent .btn-block,
.pagecontent .w-100 {
  width: 100%;
}

/* --- Bootstrap misc utilities --- */
.pagecontent .img-fluid {
  max-width: 100%;
  height: auto;
}
.pagecontent .rounded {
  border-radius: 6px !important;
}
.pagecontent .rounded-circle {
  border-radius: 50% !important;
}
.pagecontent .shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}
.pagecontent .shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}
.pagecontent .border {
  border: 1px solid #dee2e6 !important;
}
.pagecontent .border-0 {
  border: none !important;
}
.pagecontent .bg-light {
  background-color: #f8f9fa !important;
}
.pagecontent .bg-white {
  background-color: #fff !important;
}
.pagecontent .bg-dark {
  background-color: #212529 !important;
  color: #fff;
}
.pagecontent .float-left,
.pagecontent .float-start {
  float: left !important;
}
.pagecontent .float-right,
.pagecontent .float-end {
  float: right !important;
}
.pagecontent .clearfix::after {
  display: block;
  content: "";
  clear: both;
}
.pagecontent hr {
  margin: 16px 0;
  border: none;
  border-top: 1px solid #dee2e6;
}

/* --- Restore default element spacing (CSS reset fix for DB content) --- */
.pagecontent h1,
.pagecontent h2,
.pagecontent h3,
.pagecontent h4,
.pagecontent h5,
.pagecontent h6 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.pagecontent p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.pagecontent ul,
.pagecontent ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.pagecontent li {
  margin-bottom: 0.25rem;
}
.pagecontent blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 4px solid #1565c0;
  color: #555;
  background: #f8f9fa;
}
.pagecontent strong,
.pagecontent b {
  font-weight: 700;
}
.pagecontent em,
.pagecontent i {
  font-style: italic;
}
