/* =============================================================================
   MCQUEEN HOMES CSS STYLESHEET
   Comprehensive styling for McQueen Homes web application
   Linted and organized for maintainability
   ============================================================================= */

/* =============================================================================
   GLOBAL STYLES & RESETS
   ============================================================================= */

/* Bootstrap 5 Font Enforcement */
body,
button,
input,
select,
textarea,
optgroup {
    font-family: var(--bs-body-font-family) !important;
}

/* =============================================================================
   FONT AWESOME ICON ENFORCEMENT
   ============================================================================= */

.fa,
.fas,
[class*="fa-"]:before,
.fa:before,
.fas:before {
    font-family: "Font Awesome 5 Pro", "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome" !important;
    font-weight: 900 !important;
}

.far:before,
.far {
    font-family: "Font Awesome 5 Pro", "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome" !important;
    font-weight: 400 !important;
}

.fal:before,
.fal {
    font-family: "Font Awesome 5 Pro", "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome" !important;
    font-weight: 300 !important;
}

.fab:before,
.fab {
    font-family: "Font Awesome 5 Brands", "Font Awesome 6 Brands", "Font Awesome Brands" !important;
    font-weight: 400 !important;
}

.fad:before,
.fad {
    font-family: "Font Awesome 5 Duotone" !important;
    font-weight: 900 !important;
}

/* =============================================================================
   BOOTSTRAP 5 ENHANCEMENTS
   ============================================================================= */

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    color: var(--mh-color-red);
    background-color: rgb(250, 249, 247);
}

.dropdown-item:hover {
    color: rgb(250, 249, 247);
    background-color: var(--mh-color-red);
}

/* =============================================================================
   TOOLTIP SYSTEM - FLOATING LABELS GLOBAL SOLUTION
   ============================================================================= */

/* Ensure tooltips appear above floating labels and other elements */
.tooltip {
    z-index: 1070 !important;
}

/* Higher z-index for tooltips within floating labels */
.form-floating .tooltip {
    z-index: 1080 !important;
}

/* Ensure floating label containers can contain absolutely positioned tooltips */
.form-floating {
    position: relative;
}

/* Standard positioning for tooltip icons in floating labels */
.form-floating .tooltip-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    cursor: pointer;
}

/* =============================================================================
   CUSTOM UTILITY CLASSES
   ============================================================================= */

/* Alert Indicators */
.alert-req-mh::before {
    content: "* ";
    color: red;
}

.alert-not-req-mh::before {
    content: "  ";
    color: rgb(250, 249, 247);
}

/* Background Utilities */
.bg-highlight-mh {
    background-color: rgb(255, 255, 153);
    border-radius: 5px;
    border: 0.01rem solid rgb(220, 53, 69);
}

.bg-mh {
    background-color: var(--mh-color-red);
    color: rgb(255, 255, 255);
}

/* Text Color Utilities */
.blue-fa-mh {
    color: blue !important;
}

.fa-red-mh {
    color: red !important;
}

.fa-yellow-mh {
    color: yellow !important;
}

.text-gray-mh {
    color: rgb(204, 204, 204) !important;
}

.text-mh {
    color: var(--mh-color-red) !important;
}

.text-highlight-mh {
    background-color: rgb(255, 255, 120) !important;
}

.text-yellow {
    color: rgba(255, 255, 51, 1) !important;
}

.text-orange {
    color: rgba(255, 102, 0, 1) !important;
}

.darker-dynamic-text-mh {
    color: black;
    background-color: rgb(255, 255, 153);
    font-weight: bold !important;
}

.darker-static-text-mh {
    color: black;
    font-weight: bold !important;
}

/* Border Utilities */
.border-mh {
    border-radius: 8px;
    border: 0.01em solid rgb(102, 102, 102);
}

.no-border-mh {
    border: none !important;
}

/* =============================================================================
   BUTTON SYSTEM
   ============================================================================= */

/* Button Padding Utilities */
.btn-padding-mh {
    padding: 2px !important;
}

/* Airbnb Color Button */
.btn-bnb-mh {
    background-color: rgb(251, 81, 115);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.btn-bnb-mh:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(251, 81, 115);
    color: rgb(251, 81, 115);
}

/* Black and White Buttons */
.btn-outline-bw-mh {
    background-color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}

.btn-outline-bw-mh:hover {
    background-color: rgb(0, 0, 0);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.btn-bw-mh {
    background-color: rgb(0, 0, 0);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.btn-bw-mh:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}

/* Bronze Buttons */
.btn-bronze-mh {
    background-color: rgb(153, 153, 102);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.btn-bronze-mh:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(153, 153, 102);
    color: rgb(153, 153, 102);
}

.btn-outline-bronze-mh {
    background-color: rgb(255, 255, 255);
    border-color: rgb(153, 153, 102);
    color: rgb(153, 153, 102);
}

.btn-outline-bronze-mh:hover {
    background-color: rgb(153, 153, 102);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

/* Red and White MH Buttons */
.btn-mh {
    background-color: var(--mh-color-red);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.btn-mh:hover {
    background-color: rgb(255, 255, 255);
    border-color: var(--mh-color-red);
    color: var(--mh-color-red);
    cursor: pointer;
}

.btn-outline-mh {
    background-color: rgb(255, 255, 255);
    border-color: var(--mh-color-red);
    color: var(--mh-color-red);
}

.btn-outline-mh:hover {
    background-color: var(--mh-color-red);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    cursor: pointer;
}

/* Red and Gold MH Buttons */
.btn-mh2 {
    background-color: rgb(238, 241, 48);
    border-color: var(--mh-color-red);
    color: var(--mh-color-red);
}

.btn-mh2:hover {
    background-color: var(--mh-color-red);
    border-color: rgb(238, 241, 48);
    color: rgb(238, 241, 48);
    cursor: pointer;
}

.btn-outline-mh2 {
    background-color: var(--mh-color-red);
    border-color: rgb(238, 241, 48);
    color: rgb(238, 241, 48);
}

.btn-outline-mh2:hover {
    background-color: rgb(238, 241, 48);
    border-color: var(--mh-color-red);
    color: var(--mh-color-red);
    cursor: pointer;
}

/* =============================================================================
   TYPOGRAPHY & TEXT UTILITIES
   ============================================================================= */

/* Font Size Utilities */
.font-zero-mh {
    font-size: 0px !important;
}

.supersmall-mh {
    font-size: 9px;
}

.superbig-mh {
    font-size: 150px;
}

.supermedium-mh {
    font-size: 100px;
}

.fa-big-font-mh {
    font-size: 50px;
}

/* Text Decorations */
.strikethrough-mh {
    text-decoration: line-through !important;
    font-size: 70% !important;
}

/* Text Selection */
.selectable-mh {
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all;
}

/* Language Toggle */
#es-to-en-mh,
.text-es {
    display: none;
}

/* Special Text Styles */
.red-question-mark-mh {
    color: red !important;
}

.white-text-black-bg {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    border: solid rgb(255, 255, 255) 0.01rem;
    padding-left: 2px;
    padding-right: 2px;
}

/* =============================================================================
   LAYOUT & POSITIONING
   ============================================================================= */

/* Positioning Utilities */
.copyright-mh {
    position: absolute;
    bottom: 1px;
    font-size: 10px;
}

.sticky-top-mh {
    position: sticky;
    z-index: 1020;
    top: 32px;
}

/* Display Utilities */
.hide-mh {
    display: inline;
}

.undefined {
    background-color: inherit;
}

/* =============================================================================
   FORM ELEMENTS
   ============================================================================= */

.textarea-mh {
    height: 100px !important;
}

/* =============================================================================
   IMAGE STYLES
   ============================================================================= */

/* Image Size Utilities */
.img-300-mh {
    max-height: 300px !important;
}

.img-300-mh:hover {
    opacity: 0.6 !important;
}

.img-detail-mh {
    height: auto;
}

.img-detail-img-mh {
    max-height: 300px;
}

/* Maintenance Images */
.img-maintenance-mh,
.img-maintenance-red-mh {
    max-height: 65px;
    margin-right: 1px;
    float: left;
}

.img-maintenance-mh {
    border: 2px solid #000000;
}

.img-maintenance-red-mh {
    border: 2px solid red;
}

/* Gallery Styles */
.lightbox-gallery {
    background-repeat: no-repeat;
    color: #000;
    overflow-x: hidden;
}

.lightbox-gallery .photos {
    padding-bottom: 20px;
}

.lightbox-gallery .item {
    padding-bottom: 30px;
}

.gallery-preview {
    max-height: 150px;
    margin-left: 2px;
    margin-bottom: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery-preview:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* =============================================================================
   LAYOUT COMPONENTS
   ============================================================================= */

/* Banner Styles */
.top-banner {
    width: 100% !important;
    margin-bottom: 3px;
}

.sunrise {
    background-image: url("/mh/images/site/sunrise.jpg");
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* HR Styles */
hr {
    margin-top: 2px;
    margin-bottom: 2px;
}

.hr-mh {
    border: 3px solid var(--mh-color-red);
}

/* Social Media */
.social-media-url-mh {
    margin-right: 6px !important;
}

/* Blur States */
.blur-white-mh,
.blur-black-mh,
.blur-clear-mh {
    color: inherit;
}

/* =============================================================================
   MODERN UI ENHANCEMENTS - MLP-082.1
   ============================================================================= */

/* Enhanced Background Gradients */
.bg-mh {
    background: linear-gradient(135deg, var(--mh-color-red), #dc281e) !important;
    color: white;
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    border-bottom: none;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.card-footer-mh {
    width: 100% !important;
    min-height: 255px;
}

/* Modern Form Controls */
.form-floating {
    position: relative;
}

.form-floating > .form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    padding: 1rem 0.75rem;
    font-size: 1rem;
}

.form-floating > .form-control:focus {
    border-color: var(--mh-color-red);
    box-shadow: 0 0 0 0.2rem rgba(var(--mh-color-red-rgb), 0.15);
    outline: none;
}

.form-floating > label {
    color: #666;
    font-weight: 500;
    padding: 1rem 0.75rem;
}

.form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--mh-color-red);
    box-shadow: 0 0 0 0.2rem rgba(var(--mh-color-red-rgb), 0.15);
}

/* Enhanced Button Styling */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Enhanced MH Buttons */
.btn-mh {
    background: linear-gradient(135deg, var(--mh-color-red), #dc281e);
    color: white;
}

.btn-mh:hover {
    background: linear-gradient(135deg, #dc281e, var(--mh-color-red));
    color: white;
    box-shadow: 0 4px 12px rgba(var(--mh-color-red-rgb), 0.3);
}

.btn-outline-mh {
    background: transparent;
    border: 2px solid var(--mh-color-red);
    color: var(--mh-color-red);
}

.btn-outline-mh:hover {
    background: linear-gradient(135deg, var(--mh-color-red), #dc281e);
    border-color: var(--mh-color-red);
    color: white;
    box-shadow: 0 4px 12px rgba(var(--mh-color-red-rgb), 0.3);
}

/* Add Button Enhancement */
.btn-add-mh {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.btn-add-mh:hover {
    background: linear-gradient(135deg, #218838, #1dc7a5);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Cancel Button Enhancement */
.btn-cancel-mh {
    background: #6c757d;
}

.btn-cancel-mh:hover {
    background: #5a6268;
}

/* Alert Enhancements */
.alert {
    border-radius: 8px;
    border: none;
    border-left: 4px solid;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    color: #155724;
    border-left-color: #28a745;
}

.alert-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0.05));
    color: #0c5460;
    border-left-color: #17a2b8;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    color: #856404;
    border-left-color: #ffc107;
}

/* Enhanced Dropdowns */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

.dropdown-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    color: #333;
}

.dropdown-item:hover {
    background-color: rgba(var(--mh-color-red-rgb), 0.1);
    color: var(--mh-color-red);
}

.dropdown-item i {
    width: 20px;
    opacity: 0.7;
    margin-right: 8px;
}

.dropdown-header {
    font-weight: 600;
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px 4px;
}

.dropdown-divider {
    margin: 8px 0;
}

/* Modal Enhancements */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #e0e0e0;
}

.modal-footer {
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 12px 12px;
}

/* Badge Enhancements */
.badge {
    border-radius: 6px;
    font-weight: 500;
    padding: 6px 12px;
}

/* Navbar Enhancements */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* User Avatar Styling */
.user-avatar {
    text-shadow: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Link Enhancements */
.text-muted {
    transition: color 0.3s ease;
}

.text-muted:hover {
    color: var(--mh-color-red) !important;
}

a {
    color: var(--mh-color-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #dc281e;
}

/* List Group Enhancements */
.list-group-item {
    border: none;
    border-radius: 8px !important;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.list-group-item:hover {
    background-color: rgba(var(--mh-color-red-rgb), 0.05);
}

/* Progress Bar Enhancements */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e0e0e0;
}

.progress-bar {
    border-radius: 4px;
    background: linear-gradient(90deg, var(--mh-color-red), #dc281e);
}

/* Input Group Enhancements */
.input-group .form-control {
    border-radius: 8px;
}

.input-group-text {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

/* Focus Accessibility */
*:focus {
    outline: 2px solid rgba(var(--mh-color-red-rgb), 0.5);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =============================================================================
   USER PROFILE SPECIFIC STYLES
   ============================================================================= */

/* Phone number input styling */
.form-control.text-center {
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Password strength indicator */
.password-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: 8px;
    background: #e0e0e0;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-weak {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.strength-fair {
    background: linear-gradient(90deg, #fd7e14, #ffc107);
}

.strength-good {
    background: linear-gradient(90deg, #ffc107, #28a745);
}

.strength-strong {
    background: linear-gradient(90deg, #28a745, #20c997);
}

/* Role selection styling */
.role-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.role-option:hover {
    border-color: var(--mh-color-red);
    background: rgba(var(--mh-color-red-rgb), 0.05);
}

.role-option.selected {
    border-color: var(--mh-color-red);
    background: rgba(var(--mh-color-red-rgb), 0.1);
}

.role-option input[type="radio"] {
    display: none;
}

.role-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.role-description {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* =============================================================================
   PROPERTY DETAIL ENHANCEMENTS
   ============================================================================= */

.property-pricing {
    margin: 1rem 0;
}

.property-pricing .deposit-info {
    color: #666;
    font-size: 0.75rem;
    font-style: italic;
}

.btn-more-details {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.btn-more-details:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* =============================================================================
   PASSWORD RESET FEATURE STYLES - MH-153
   ============================================================================= */

.password-strength-bar {
    width: 100%;
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.strength-weak .password-strength-fill {
    background-color: #dc3545;
    width: 25%;
}

.strength-fair .password-strength-fill {
    background-color: #fd7e14;
    width: 50%;
}

.strength-good .password-strength-fill {
    background-color: #ffc107;
    width: 75%;
}

.strength-strong .password-strength-fill {
    background-color: #198754;
    width: 100%;
}

.reset-button-container {
    margin: 24px 0;
}

.security-notice {
    background-color: #F1F2F4;
    padding: 16px;
    margin-top: 24px;
}

.security-notice ul {
    margin: 8px 0;
    padding-left: 20px;
}

/* =============================================================================
   MARKETING PITCH PAGE STYLES
   ============================================================================= */

/* Hero Section */
.marketing-hero {
    background: linear-gradient(135deg, var(--mh-color-red) 0%, rgb(180,20,10) 50%, rgb(220,40,30) 100%);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* LCP Optimized Marketing Hero Logo */
.marketing-hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
    /* Performance optimizations for LCP */
    content-visibility: auto;
    contain-intrinsic-size: 350px 120px;
}

/* Responsive sizing for logo to improve LCP on mobile */
@media (max-width: 768px) {
    .marketing-hero-logo {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .marketing-hero-logo {
        max-width: 240px;
    }
}

.marketing-hero-tagline {
    color: #f8f9fa;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-weight: 500;
}

/* Video Elements */
.marketing-video-large {
    height: 350px;
    object-fit: cover;
}

.marketing-video-small {
    height: 200px;
    object-fit: cover;
}

/* Platform Card */
.platform-card {
    background-color: var(--mh-color-red);
    color: rgb(255,255,255);
}

.platform-card-title {
    font-weight: 600;
}

.platform-card-text {
    font-size: 0.85rem;
    color: #f8f9fa;
}

.platform-card-divider {
    opacity: 0.3;
}

/* Call to Action Section */
.marketing-cta {
    background-color: var(--mh-color-red);
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.marketing-cta-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    font-weight: 600;
}

.marketing-cta-text {
    color: #f8f9fa;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-weight: 500;
}

.marketing-cta-footer {
    color: #f8f9fa;
    font-weight: 500;
}

.marketing-cta-link {
    color: #e9ecef !important;
    text-decoration: underline;
}

/* CTA Button Text Shadow Classes - ROTR Compliant */
.btn-cta-shadow {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-cta-shadow-dark {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-cta-text-white {
    color: #ffffff;
}

.btn-cta-text-light {
    color: #f8f9fa;
}

.btn-cta-text-dark {
    color: #212529;
}

.btn-cta-text-muted {
    color: #495057;
}

/* Scroll to Top Button */
#goToTop {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 99;
    font-size: 18px;
    outline: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    padding: 0px;
    border-radius: 50%;
    background-color: var(--mh-color-red) !important;
    border: 2px solid rgb(255,255,255) !important;
    color: rgb(255,255,255);
}

#goToTop:hover {
    background-color: rgb(255,255,255) !important;
    border: 2px solid var(--mh-color-red) !important;
    color: var(--mh-color-red) !important;
}

/* =============================================================================
   USER MANUAL SPECIFIC STYLES (moved from inline)
   ============================================================================= */

/* Card body with reduced padding for user manual */
.card-body-compact {
    padding: 10px;
}

/* Chapter anchor with top spacing for user manual navigation */
.chapter-anchor {
    padding-top: 50px;
}

/* End of McQueen Homes CSS */
