/* 
 * Donald Ross Enhancements Styles
 * Updated: Beautiful card design for Golf Courses by State/Province
 * Removed abbreviations, added gradients, golf icons, and modern styling
 * Cache breaker: 2025-08-26-WHITE-RIBBON-DEBUG-TEST
 */

/* SIMPLE SOLUTION: Just reduce body padding to minimize white space */
/* Remove all negative margin attempts - they affect too many elements */

/* ===================================
   MAXIMUM SPECIFICITY OVERRIDE TESTING
   =================================== */

/* Test CSS Loading - This should make course tracking containers visible */
html body .course-tracking-dashboard,
html body.home .course-tracking-dashboard,
html body.page .course-tracking-dashboard,
html body .entry-content .course-tracking-dashboard,
html body .wp-site-blocks .course-tracking-dashboard,
html body main .course-tracking-dashboard,
html body article .course-tracking-dashboard,
html body .wp-block-post-content .course-tracking-dashboard {
  background: #f8fafc !important;
  border: 3px solid #1e5e3a !important;
  border-radius: 16px !important;
  padding: 40px !important;
  margin: 40px auto !important;
  max-width: 1400px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
  display: block !important;
  position: relative !important;
  z-index: 999 !important;
}

/* Force Course Tracking Title Styling */
html body .course-tracking-dashboard h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1e5e3a !important;
  text-align: center !important;
  margin-bottom: 8px !important;
}

/* Force Course Tabs Styling */
html body .course-tracking-dashboard .course-tabs {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 40px !important;
  background: white !important;
  border-radius: 12px !important;
  padding: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  gap: 8px !important;
}

html body .course-tracking-dashboard .tab-btn {
  flex: 1 !important;
  max-width: 250px !important;
  padding: 16px 24px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

html body .course-tracking-dashboard .tab-btn.active {
  background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(30, 94, 58, 0.4) !important;
}

/* Force Top States Grid Display */
html body .top-states-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  margin: 20px 0 50px 0 !important;
}

/* Mobile responsive overrides for top-states-grid - HIGH PRIORITY */
@media screen and (max-width: 1200px) {
  html body .donald-ross-courses-by-region .top-states-grid,
  html body .top-states-grid.columns-4,
  html body .top-states-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media screen and (max-width: 900px) {
  html body .donald-ross-courses-by-region .top-states-grid,
  html body .top-states-grid.columns-4,
  html body .top-states-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media screen and (max-width: 600px) {
  html body .donald-ross-courses-by-region .top-states-grid,
  html body .top-states-grid.columns-4,
  html body .top-states-grid,
  html body .donald-ross-courses-by-region.top-states .top-states-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 15px !important;
  }
}

html body .top-state-card {
  background: white !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden !important;
  transition: all 0.4s ease !important;
  border: 2px solid #e5e7eb !important;
  position: relative !important;
}

html body .top-state-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(30, 94, 58, 0.15) !important;
  border-color: #2d7a57 !important;
}

/* =================================================================
 * CRITICAL - Prevent Login Button Red Flash on Page Load
 * ================================================================= */

/* Immediate login button styling to prevent red flash */
.dre-login-btn,
a.dre-login-btn,
.dre-auth-menu .dre-login-btn,
.dre-header-auth-container .dre-login-btn,
#masthead .dre-login-btn,
.site-header .dre-login-btn {
    color: #ffffff !important;
    background-color: transparent !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
}

.dre-login-btn:hover,
a.dre-login-btn:hover {
    color: #a7f3d0 !important;
    border-color: #a7f3d0 !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* =================================================================
 * Header and Footer Green Theme Overrides
 * ================================================================= */

/* Header Background - Golf Course Green - High Specificity Overrides */
#masthead,
#masthead .site-header-row-container,
#masthead .site-header-row-container-inner,
#masthead .site-main-header-wrap,
#masthead .site-main-header-wrap .site-header-row-container-inner,
#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start):not(.site-header-row-container):not(.site-main-header-wrap),
#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start) > .site-header-row-container-inner,
body #masthead,
body .site-header,
body .wp-site-blocks header,
body [class*="header-main"],
body [class*="header-row"],
body .site-header-row,
body .site-header-row-container,
body .site-header-row-container-inner,
body .site-header .site-header-row-container-inner,
body .site-header-wrap {
    background-color: #1e5e3a !important; /* Deep golf green */
    background-image: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
    background: #1e5e3a !important;
}

/* Footer Background - Golf Course Green - High Specificity Overrides */
#colophon,
#colophon .site-footer-row-container,
#colophon .site-footer-row-container-inner,
#colophon .footer-wrap,
body #colophon,
body .site-footer,
body .wp-site-blocks footer,
body [class*="footer-main"],
body [class*="footer-row"],
body .site-footer-row,
body .site-footer-row-container,
body .site-footer-row-container-inner,
body .site-footer .site-footer-row-container-inner,
body .site-footer-wrap,
body .site-bottom-footer-wrap,
body .site-top-footer-wrap,
body .site-middle-footer-wrap {
    background-color: #1e5e3a !important; /* Deep golf green */
    background-image: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
    background: #1e5e3a !important;
}

/* Ensure text is readable on green background */
.site-header,
.site-header a,
.site-header .nav--toggle-sub li.menu-item a,
.site-header .site-title,
.site-header .site-description,
.site-footer,
.site-footer a,
.site-footer p,
.site-footer .widget,
.site-footer .widget-title,
.site-footer .site-info {
    color: #ffffff !important;
}

/* Header navigation items hover state */
.site-header a:hover,
.site-header .nav--toggle-sub li.menu-item a:hover,
.site-footer a:hover {
    color: #a7f3d0 !important; /* Light green for hover */
    opacity: 1 !important;
}

/* Active/Current menu items */
.site-header .current-menu-item > a,
.site-header .current_page_item > a {
    color: #a7f3d0 !important;
}

/* Mobile menu toggle button */
.menu-toggle-open,
.drawer-toggle,
.menu-toggle-close {
    color: #ffffff !important;
    background-color: transparent !important;
}

/* Mobile drawer/popup menu background */
.popup-drawer .drawer-inner,
.mobile-navigation-wrap,
#mobile-drawer .drawer-inner {
    background-color: #1e5e3a !important;
    background-image: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
}

/* Submenu/dropdown backgrounds */
.site-header .sub-menu,
.site-header .submenu,
.site-header ul ul {
    background-color: #2d7a57 !important;
    background-image: none !important;
}

/* Submenu items */
.site-header .sub-menu li a,
.site-header .submenu li a {
    color: #ffffff !important;
}

.site-header .sub-menu li a:hover,
.site-header .submenu li a:hover {
    background-color: #1e5e3a !important;
    color: #a7f3d0 !important;
}

/* Footer widget area separators/borders */
.site-footer .widget,
.site-footer-row {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Social icons in footer */
.site-footer .social-navigation a,
.site-footer .social-icons a {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.site-footer .social-navigation a:hover,
.site-footer .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #a7f3d0 !important;
}

/* =================================================================
 * Nuclear Option - Override Kadence Inline Styles
 * ================================================================= */

/* Target specific Kadence header elements with maximum specificity */
html body.wp-admin-bar-mobile #masthead,
html body.wp-admin-bar-mobile .site-header,
html body #masthead,
html body .site-header,
html body #masthead .site-header-row-container,
html body #masthead .site-header-row-container-inner,
html body #masthead .site-main-header-wrap .site-header-row-container-inner,
html body .site-main-header-wrap,
html body .site-main-header-wrap .site-header-row-container-inner,
/* Additional selectors for better coverage */
html body.single #masthead,
html body.single .site-header,
html body.single #masthead .site-header-row-container,
html body.single #masthead .site-header-row-container-inner,
html body.page #masthead,
html body.page .site-header,
html body.page #masthead .site-header-row-container,
html body.page #masthead .site-header-row-container-inner,
html body.archive #masthead,
html body.archive .site-header,
html body.archive #masthead .site-header-row-container,
html body.archive #masthead .site-header-row-container-inner,
html body .site-header-row-container,
html body .site-header-row-container-inner,
html body .site-main-header-inner-wrap {
    background-color: #1e5e3a !important;
    background-image: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
    background: #1e5e3a !important;
}

/* Ultra-aggressive inline style overrides */
#masthead[style*="background"],
.site-header[style*="background"],
.site-header-row-container[style*="background"],
.site-header-row-container-inner[style*="background"],
.site-main-header-wrap[style*="background"] {
    background-color: #1e5e3a !important;
    background-image: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
    background: #1e5e3a !important;
}

/* Target specific Kadence footer elements with maximum specificity */
html body.wp-admin-bar-mobile #colophon,
html body.wp-admin-bar-mobile .site-footer,
html body #colophon,
html body .site-footer,
html body #colophon .site-footer-row-container,
html body #colophon .site-footer-row-container-inner,
html body .site-footer-wrap {
    background-color: #1e5e3a !important;
    background-image: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
    background: #1e5e3a !important;
}

/* Force override with attribute selectors for extra specificity */
[id="masthead"],
[class*="site-header"],
[id="colophon"],
[class*="site-footer"] {
    background-color: #1e5e3a !important;
    background-image: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
    background: #1e5e3a !important;
}

/* =================================================================
 * Anti-Red Button Override - Nuclear Option for Login Button
 * ================================================================= */

/* Override any red colors on login button */
.dre-login-btn[style*="color"],
a.dre-login-btn[style*="color"],
.dre-auth-menu .dre-login-btn[style*="color"],
.has-text-color.dre-login-btn,
.has-link-color.dre-login-btn,
.wp-elements-button.dre-login-btn {
    color: #ffffff !important;
}

/* Remove any WordPress generated classes that might add red color */
.dre-login-btn.has-vivid-red-color,
.dre-login-btn.has-red-color,
.dre-login-btn.has-cherry-color,
.dre-login-btn.has-luminous-vivid-orange-color,
.dre-login-btn[class*="red"],
.dre-login-btn[class*="color"] {
    color: #ffffff !important;
}

/* CSS custom property override */
.dre-login-btn {
    --wp--preset--color--vivid-red: #ffffff !important;
    --wp--preset--color--red: #ffffff !important;
}

/* Kadence theme specific overrides */
.site-header .dre-login-btn.kb-button,
.site-header .dre-login-btn[class*="kb-"] {
    color: #ffffff !important;
}

/* =================================================================
 * Custom Responsive Navigation System
 * ================================================================= */

.dre-custom-nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
}

/* Desktop Navigation */
.dre-desktop-nav {
    display: flex !important;
    align-items: center !important;
}

.dre-nav-menu {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    gap: 20px !important;
}

.dre-nav-item {
    margin: 0 !important;
    padding: 0 !important;
}

.dre-nav-link {
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    border-radius: 4px !important;
}

.dre-nav-link:hover,
.dre-nav-link:focus {
    color: #a7f3d0 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
}

/* Mobile Toggle Button */
.dre-mobile-toggle {
    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    gap: 2px !important;
    color: #ffffff !important;
    font-size: 12px !important;
}

.dre-hamburger-line {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #ffffff !important;
    margin: 2px 0 !important;
    transition: all 0.3s ease !important;
}

.dre-mobile-menu-text {
    margin-top: 4px !important;
    font-size: 10px !important;
    color: #ffffff !important;
}

.dre-mobile-toggle:hover {
    border-color: #a7f3d0 !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.dre-mobile-toggle:hover .dre-hamburger-line {
    background: #a7f3d0 !important;
}

.dre-mobile-toggle:hover .dre-mobile-menu-text {
    color: #a7f3d0 !important;
}

/* Mobile Navigation Overlay */
.dre-mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 99999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.dre-mobile-nav-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.dre-mobile-nav {
    position: fixed !important;
    top: 0 !important;
    right: -300px !important;
    width: 280px !important;
    height: 100% !important;
    background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
    padding: 20px !important;
    transition: right 0.3s ease !important;
    overflow-y: auto !important;
}

.dre-mobile-nav-overlay.active .dre-mobile-nav {
    right: 0 !important;
}

.dre-mobile-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 24px !important;
    cursor: pointer !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.dre-mobile-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.dre-mobile-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 60px 0 0 0 !important;
}

.dre-mobile-item {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dre-mobile-item:last-child {
    border-bottom: none !important;
}

.dre-mobile-link {
    display: block !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 16px 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.dre-mobile-link:hover {
    color: #a7f3d0 !important;
    padding-left: 10px !important;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .dre-nav-menu {
        gap: 12px !important;
    }
    
    .dre-nav-link {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 1050px) {
    .dre-desktop-nav {
        display: none !important;
    }
    
    .dre-mobile-toggle {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .dre-mobile-nav {
        width: 100% !important;
        right: -100% !important;
    }
    
    .dre-mobile-nav-overlay.active .dre-mobile-nav {
        right: 0 !important;
    }
}

/* =================================================================
 * Header Login/Logout Menu Styles
 * ================================================================= */

.dre-header-auth-container {
    position: absolute !important;
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
}

/* Auth Menu for Non-Logged In Users */
.dre-auth-menu {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.dre-login-btn,
.dre-register-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

.dre-login-btn {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.dre-login-btn:hover,
.dre-login-btn:focus,
.dre-login-btn:active,
.dre-login-btn:visited {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #a7f3d0 !important;
    border-color: #a7f3d0 !important;
    text-decoration: none !important;
}

/* Force white color on login links everywhere - Ultra specific targeting */
a.dre-login-btn,
a.dre-login-btn:link,
a.dre-login-btn:visited,
a.dre-login-btn:focus,
.dre-auth-menu .dre-login-btn,
.dre-auth-menu a.dre-login-btn,
.dre-header-auth-container .dre-login-btn,
.dre-header-auth-container a.dre-login-btn,
#masthead .dre-login-btn,
#masthead a.dre-login-btn,
.site-header .dre-login-btn,
.site-header a.dre-login-btn {
    color: #ffffff !important;
    text-decoration: none !important;
}

a.dre-login-btn:hover,
a.dre-login-btn:active,
.dre-auth-menu .dre-login-btn:hover,
.dre-auth-menu a.dre-login-btn:hover,
.dre-header-auth-container .dre-login-btn:hover,
.dre-header-auth-container a.dre-login-btn:hover,
#masthead .dre-login-btn:hover,
#masthead a.dre-login-btn:hover,
.site-header .dre-login-btn:hover,
.site-header a.dre-login-btn:hover {
    color: #a7f3d0 !important;
    text-decoration: none !important;
}

.dre-register-btn {
    background-color: #a7f3d0 !important;
    color: #1e5e3a !important;
    border-color: #a7f3d0 !important;
}

.dre-register-btn:hover {
    background-color: #ffffff !important;
    color: #1e5e3a !important;
    border-color: #ffffff !important;
}

/* User Dropdown Menu for Logged In Users */
.dre-user-menu {
    position: relative !important;
}

.dre-user-dropdown {
    position: relative !important;
}

.dre-user-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.dre-user-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: #a7f3d0 !important;
    color: #a7f3d0 !important;
}

.dre-user-toggle i.fas {
    font-size: 14px !important;
}

.dre-dropdown-arrow {
    transition: transform 0.3s ease !important;
    margin-left: 4px !important;
}

.dre-dropdown-arrow.dre-dropdown-open {
    transform: rotate(180deg) !important;
}

.dre-user-dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    min-width: 200px !important;
    z-index: 1001 !important;
    display: none !important;
    margin-top: 5px !important;
}

.dre-dropdown-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    text-decoration: none !important;
    color: #374151 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    border-bottom: 1px solid #f3f4f6 !important;
}

.dre-dropdown-link:last-child {
    border-bottom: none !important;
}

.dre-dropdown-link:hover {
    background-color: #f8fafc !important;
    color: #1e5e3a !important;
}

.dre-dropdown-link i {
    width: 14px !important;
    text-align: center !important;
    font-size: 14px !important;
}

.dre-dropdown-divider {
    height: 1px !important;
    background-color: #e5e7eb !important;
    margin: 4px 0 !important;
}

.dre-logout-link:hover {
    color: #dc2626 !important;
}

.dre-favorites-link:hover {
    color: #10B981 !important;
}

/* =================================================================
 * Responsive Navigation Improvements
 * ================================================================= */

/* Prevent navigation text wrapping at medium screen sizes - more aggressive */
@media (max-width: 1300px) {
    .site-header .header-navigation .menu li a,
    .site-header .header-menu-container .menu li a,
    .header-navigation .menu li a {
        padding: 0.6em 0.3em !important;
        font-size: 14px !important;
    }
    
    .site-header .header-navigation,
    .site-header .header-menu-container,
    .header-navigation {
        flex-wrap: nowrap !important;
    }
    
    .site-header .menu,
    .header-navigation .menu {
        gap: 4px !important;
    }
}

/* Tighter spacing at wider breakpoint */
@media (max-width: 1100px) {
    .site-header .header-navigation .menu li a,
    .site-header .header-menu-container .menu li a,
    .header-navigation .menu li a {
        padding: 0.5em 0.25em !important;
        font-size: 13px !important;
    }
    
    .site-header .menu,
    .header-navigation .menu {
        gap: 2px !important;
    }
}

/* Improve hamburger menu trigger point and styling */
@media (max-width: 1200px) {
    /* Let Kadence handle navigation hiding, just ensure hamburger is visible */
    /* Remove the forced hiding - let theme handle responsive behavior */
    
    /* Enhanced mobile menu toggle styling */
    .site-header .menu-toggle-open,
    .menu-toggle-open,
    #masthead .menu-toggle-open,
    .site-header-row-container .menu-toggle-open {
        color: #ffffff !important;
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 6px !important;
        padding: 10px 15px !important;
        font-size: 14px !important;
        gap: 8px !important;
        align-items: center !important;
        cursor: pointer !important;
        font-weight: 500 !important;
    }
    
    /* Hamburger icon styling - proper 3 lines */
    .menu-toggle-open .menu-toggle-icon {
        font-size: 18px !important;
        color: #ffffff !important;
        font-weight: normal !important;
        line-height: 1 !important;
    }
    
    .menu-toggle-open .menu-toggle-icon:before {
        content: '☰' !important; /* Unicode hamburger symbol */
    }
    
    .site-header .menu-toggle-open:hover,
    .menu-toggle-open:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: #a7f3d0 !important;
        color: #a7f3d0 !important;
    }
    
    /* Style mobile navigation drawer - Enhanced */
    .popup-drawer .drawer-inner,
    .mobile-navigation-wrap,
    .mobile-navigation,
    #mobile-drawer .drawer-inner,
    .drawer-content {
        background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
        color: #ffffff !important;
    }
    
    /* Mobile menu items styling */
    .mobile-navigation a,
    .popup-drawer .drawer-inner a,
    #mobile-drawer a,
    .drawer-content a,
    .mobile-navigation .menu-item a,
    .popup-drawer .menu-item a {
        color: #ffffff !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s ease !important;
        display: block !important;
        text-decoration: none !important;
        font-size: 16px !important;
    }
    
    /* Mobile menu hover states */
    .mobile-navigation a:hover,
    .popup-drawer .drawer-inner a:hover,
    #mobile-drawer a:hover,
    .drawer-content a:hover,
    .mobile-navigation .menu-item a:hover,
    .popup-drawer .menu-item a:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #a7f3d0 !important;
        transform: translateX(5px) !important;
    }
    
    /* Ensure mobile menu shows all items */
    .mobile-navigation .menu,
    .popup-drawer .menu,
    #mobile-drawer .menu {
        display: block !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .mobile-navigation .menu-item,
    .popup-drawer .menu-item,
    #mobile-drawer .menu-item {
        display: block !important;
        width: 100% !important;
    }
    
    /* Adjust header layout for mobile */
    .site-header .site-header-row-container-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .site-branding {
        flex: 1 !important;
    }
    
    .menu-toggle-open {
        margin-left: auto !important;
        margin-right: 10px !important;
    }
}

/* Enhanced mobile header spacing */
@media (max-width: 768px) {
    .site-header-row-container-inner {
        padding: 8px 15px !important;
    }
    
    .site-branding .site-title,
    .site-branding .brand {
        font-size: 18px !important;
    }
    
    .dre-header-auth-container {
        right: 60px !important; /* Make room for hamburger menu */
    }
    
    .dre-login-btn,
    .dre-register-btn,
    .dre-user-toggle {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
    
    .dre-auth-menu {
        gap: 4px !important;
    }
    
    .dre-user-dropdown-menu {
        min-width: 160px !important;
        right: -5px !important;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .dre-header-auth-container {
        right: 55px !important;
    }
    
    .dre-login-btn,
    .dre-register-btn {
        padding: 6px 8px !important;
        font-size: 11px !important;
    }
    
    .dre-user-toggle {
        padding: 6px 8px !important;
        font-size: 11px !important;
    }
    
    /* Hide text on very small screens, show icons only */
    .dre-login-btn .login-text,
    .dre-register-btn .register-text {
        display: none !important;
    }
    
    .menu-toggle-open {
        padding: 6px 8px !important;
    }
    
    .menu-toggle-open .menu-toggle-label {
        display: none !important;
    }
}

/* This section is now handled above in the responsive navigation section */

/* Featured Courses Empty State */
.featured-courses-empty {
    text-align: center !important;
    padding: 40px 20px !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    margin: 20px 0 !important;
}

.featured-courses-empty p {
    font-size: 16px !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

/* Golf Courses by State/Province Styles */
.dre-regions-section {
    margin: 40px auto !important;
    padding: 32px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    max-width: 1200px !important; /* Center the section with max width */
    text-align: center !important; /* Center all content */
}

.dre-regions-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1e5e3a !important;
    text-align: center !important;
    margin: 0 0 32px 0 !important;
}

.dre-regions-subsection {
    margin-bottom: 32px !important;
    text-align: left !important; /* Keep subsection content left-aligned */
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.dre-regions-subtitle {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin: 0 0 16px 0 !important;
    display: flex !important;
    align-items: center !important;
}

.dre-regions-subtitle:before {
    content: "" !important;
    display: inline-block !important;
    width: 4px !important;
    height: 20px !important;
    background: #1e5e3a !important;
    margin-right: 12px !important;
    border-radius: 2px !important;
}

/* Grid Layouts */
.dre-regions-grid {
    display: grid !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    justify-content: center !important; /* Center the grid items */
}

.dre-regions-2-col { grid-template-columns: repeat(2, minmax(180px, 250px)) !important; }
.dre-regions-3-col { grid-template-columns: repeat(3, minmax(180px, 220px)) !important; }
.dre-regions-4-col { grid-template-columns: repeat(4, minmax(180px, 200px)) !important; }
.dre-regions-5-col { grid-template-columns: repeat(5, minmax(160px, 180px)) !important; }
.dre-regions-6-col { grid-template-columns: repeat(6, minmax(140px, 160px)) !important; }

/* Region Cards */
.dre-region-card {
    display: block !important;
    padding: 24px 20px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    position: relative !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    overflow: hidden !important;
}

.dre-region-card:before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #1e5e3a, #4ade80) !important;
}

.dre-region-card:hover {
    background: #ffffff !important;
    border-color: #1e5e3a !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(30,58,138,0.15) !important;
}

.dre-region-card-canada:before {
    background: linear-gradient(90deg, #dc2626, #ef4444) !important;
}

.dre-region-card-canada:hover {
    border-color: #dc2626 !important;
    box-shadow: 0 12px 32px rgba(220,38,38,0.15) !important;
}

.dre-region-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.dre-region-count {
    font-size: 15px !important;
    color: #1e5e3a !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
}

.dre-region-count:before {
    content: "🏌️" !important;
    font-size: 14px !important;
}

.dre-region-card-canada .dre-region-count {
    color: #dc2626 !important;
}

.dre-region-code {
    display: none !important; /* Hide abbreviations */
}

/* Call to Action */
.dre-regions-cta {
    text-align: center !important;
    margin-top: 32px !important;
    padding-top: 24px !important;
    border-top: 1px solid #e5e7eb !important;
    clear: both !important;
    width: 100% !important;
}

.dre-regions-view-all {
    display: inline-block !important;
    padding: 12px 24px !important;
    background: #1e5e3a !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: background-color 0.2s ease !important;
}

.dre-regions-view-all:hover {
    background: #1e40af !important;
    color: #ffffff !important;
}

/* Full Page Styles */
.dre-regions-full-page {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

.dre-regions-header {
    text-align: center !important;
    margin-bottom: 48px !important;
}

.dre-regions-main-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #1e5e3a !important;
    margin: 0 0 16px 0 !important;
}

.dre-regions-description {
    font-size: 18px !important;
    color: #6b7280 !important;
    margin: 0 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.dre-regions-country-section {
    margin-bottom: 48px !important;
}

.dre-regions-country-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #374151 !important;
    margin: 0 0 24px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.dre-regions-country-count {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
}

.dre-regions-full-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 20px !important;
}

.dre-region-full-card {
    display: block !important;
    padding: 32px 24px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}

.dre-region-full-card:before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 5px !important;
    background: linear-gradient(90deg, #1e5e3a, #4ade80) !important;
}

.dre-region-full-card:hover {
    border-color: #1e5e3a !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(30,58,138,0.15) !important;
    background: #ffffff !important;
}

.dre-region-full-card-canada:before {
    background: linear-gradient(90deg, #dc2626, #ef4444) !important;
}

.dre-region-full-card-canada:hover {
    border-color: #dc2626 !important;
    box-shadow: 0 16px 40px rgba(220,38,38,0.15) !important;
}

.dre-region-full-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.dre-region-full-code {
    display: none !important; /* Hide abbreviations on full page too */
}

.dre-region-full-count {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #1e5e3a !important;
    position: relative !important;
}

.dre-region-full-count:after {
    content: "🏌️" !important;
    position: absolute !important;
    right: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 20px !important;
}

.dre-region-full-card-canada .dre-region-full-count {
    color: #dc2626 !important;
}

.dre-region-full-name {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.dre-region-full-courses {
    font-size: 16px !important;
    color: #6b7280 !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dre-regions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
        gap: 12px !important;
    }
    
    .dre-regions-full-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 16px !important;
    }
    
    .dre-regions-main-title {
        font-size: 28px !important;
    }
    
    .dre-regions-description {
        font-size: 16px !important;
    }
}

/* Contact Info and Course Details Table Styling */
table.contact-info-table,
table.course-details-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
  max-width: 800px !important;
  margin: 24px auto 32px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
}

table.contact-info-table th,
table.contact-info-table td,
table.course-details-table th,
table.course-details-table td {
  padding: 14px 20px !important;
  text-align: left !important;
  border-bottom: 1px solid #e5e7eb !important;
  vertical-align: middle !important;
}

table.contact-info-table th,
table.course-details-table th {
  width: 40% !important;
  background-color: #f8fafc !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}

table.contact-info-table td,
table.course-details-table td {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1E3A8A !important;
}

table.contact-info-table tr:last-child th,
table.contact-info-table tr:last-child td,
table.course-details-table tr:last-child th,
table.course-details-table tr:last-child td {
  border-bottom: none !important;
}

/* Contact Info Table Specific Styling */
table.contact-info-table {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

table.contact-info-table th {
  background-color: #1e5e3a !important;
  color: white !important;
}

table.contact-info-table th i {
  margin-right: 8px !important;
  width: 16px !important;
  text-align: center !important;
}

table.contact-info-table td a {
  color: #1E3A8A !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

table.contact-info-table td a:hover {
  color: #1e40af !important;
  text-decoration: underline !important;
}

/* Social media links styling */
table.contact-info-table td a i.fab {
  margin-right: 5px !important;
}

/* Course Type Badge */
.course-type-badge {
  display: inline-block !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15) !important;
  color: white !important;
  margin: 12px 0 24px 0 !important;
  border: none !important;
}

.course-type-badge.private {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%) !important;
}

.course-type-badge.resort {
  background: linear-gradient(135deg, #1E40AF 0%, #60A5FA 100%) !important;
}

.course-type-badge.public {
  background: linear-gradient(135deg, #2d7a57 0%, #10B981 100%) !important;
}

.course-type-badge.semi-private {
  background: linear-gradient(135deg, #9333EA 0%, #A855F7 100%) !important;
}

/* Enhanced Tables Section Spacing */
.enhanced-tables-section {
  margin: 30px 0 !important;
  clear: both !important;
}

/* Additional Golf Course Enhancements */
.course-scorecard-link {
  display: inline-flex !important;
  align-items: center !important;
  padding: 8px 16px !important;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.25) !important;
  transition: all 0.3s ease !important;
}

.course-scorecard-link:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3) !important;
  color: white !important;
}

.course-scorecard-link i {
  margin-right: 6px !important;
}

/* Fix image display - show full image with aspect ratio */
.wp-block-post-featured-image,
.wp-block-geodirectory-geodir-widget-post-images,
.geodir-post-slider,
.gd-post-slider {
  position: relative !important;
  width: 100% !important;
  margin-bottom: 2rem !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background-color: #f9fafb !important;
}

.wp-block-post-featured-image img,
.wp-block-geodirectory-geodir-widget-post-images img,
.geodir-post-images img,
.gd-post-images img,
.wp-block-geodirectory-geodir-widget-post-images .geodir-slider img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
}

/* Alternative: If you prefer a fixed max height, uncomment below */
/*
.wp-block-post-featured-image img,
.wp-block-geodirectory-geodir-widget-post-images img {
  max-height: 600px !important;
  width: auto !important;
  margin: 0 auto !important;
}
*/

/* Mobile responsiveness */
@media (max-width: 768px) {
  table.contact-info-table,
  table.course-details-table {
    margin: 16px 10px 24px !important;
    font-size: smaller !important;
  }
  
  table.contact-info-table th,
  table.contact-info-table td,
  table.course-details-table th,
  table.course-details-table td {
    padding: 10px 12px !important;
  }
  
  table.contact-info-table th,
  table.course-details-table th {
    font-size: 12px !important;
  }
  
  table.contact-info-table td,
  table.course-details-table td {
    font-size: 14px !important;
  }
  
  .course-type-badge {
    font-size: 11px !important;
    padding: 6px 12px !important;
  }
}

/* SAFE CSS: Hide duplicate Ross Redesign Dates field - let template shortcode handle display */
.geodir-field-ross_redesign_dates,
[class*="ross_redesign_dates"],
.gd-field-ross_redesign_dates {
  display: none !important;
}

/* Make sure template shortcode elements are visible */
.wp-block-post-content p,
.entry-content p,
.post-content p {
  display: block !important;
}

/* Fix header navigation alignment issues */
.wp-block-navigation {
  justify-content: flex-end !important;
  margin-right: 20px !important; /* Add spacing from right edge */
  padding-right: 20px !important; /* Double approach */
}

.wp-block-group:has(.wp-block-navigation) {
  justify-content: flex-end !important;
}

/* Force navigation items to stay on the right */
.wp-block-navigation__responsive-container {
  justify-content: flex-end !important;
}

.wp-block-navigation .wp-block-navigation__submenu-container {
  justify-content: flex-end !important;
}

/* Multiple approaches to add right spacing */
.wp-block-group.alignwide:has(.wp-block-navigation) {
  padding-right: 20px !important;
}

/* Target navigation items directly */
.wp-block-navigation ul,
.wp-block-navigation__container {
  margin-right: 20px !important;
  padding-right: 20px !important;
}

/* Target the last navigation item specifically */
.wp-block-navigation .wp-block-navigation-item:last-child {
  margin-right: 20px !important;
}

/* Nuclear option - target all header elements */
header .wp-block-navigation,
.wp-site-header .wp-block-navigation,
[class*="header"] .wp-block-navigation {
  margin-right: 20px !important;
  padding-right: 20px !important;
}

/* Very aggressive right spacing - should work on any navigation */
nav {
  margin-right: 20px !important;
  padding-right: 20px !important;
}

/* Target any element containing navigation links */
a[href*="contact"], a[href*="Contact"] {
  margin-right: 20px !important;
}

/* ULTIMATE NUCLEAR LOGO CONSISTENCY - OVERRIDE EVERYTHING */
/* Target every possible selector combination to force absolute consistency */

/* Set consistent logo container size across ALL pages with maximum specificity */
.wp-block-site-logo,
body .wp-block-site-logo,
body.home .wp-block-site-logo,
body.front-page .wp-block-site-logo,
html body .wp-block-site-logo,
html body.home .wp-block-site-logo,
html body.front-page .wp-block-site-logo,
#page .wp-block-site-logo,
header .wp-block-site-logo,
.site-header .wp-block-site-logo,
.wp-site-blocks .wp-block-site-logo,
main .wp-block-site-logo,
.wp-block-template-part .wp-block-site-logo,
[class*="header"] .wp-block-site-logo,
[id*="header"] .wp-block-site-logo,
.wp-block-group .wp-block-site-logo,
div .wp-block-site-logo,
section .wp-block-site-logo,
article .wp-block-site-logo,
.wp-block-cover .wp-block-site-logo,
.wp-block-columns .wp-block-site-logo,
.wp-block-column .wp-block-site-logo,
body.home main .wp-block-site-logo,
body.front-page main .wp-block-site-logo,
body.home .wp-site-blocks .wp-block-site-logo,
body.front-page .wp-site-blocks .wp-block-site-logo {
  width: 250px !important;
  max-width: 250px !important;
  min-width: 250px !important;
  height: auto !important;
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}

/* Force consistent logo IMAGE size across ALL pages with ultimate specificity */
.wp-block-site-logo img,
body .wp-block-site-logo img,
body.home .wp-block-site-logo img,
body.front-page .wp-block-site-logo img,
html body .wp-block-site-logo img,
html body.home .wp-block-site-logo img,
html body.front-page .wp-block-site-logo img,
#page .wp-block-site-logo img,
header .wp-block-site-logo img,
.site-header .wp-block-site-logo img,
.wp-site-blocks .wp-block-site-logo img,
main .wp-block-site-logo img,
.wp-block-template-part .wp-block-site-logo img,
[class*="header"] .wp-block-site-logo img,
[id*="header"] .wp-block-site-logo img,
.wp-block-group .wp-block-site-logo img,
div .wp-block-site-logo img,
section .wp-block-site-logo img,
article .wp-block-site-logo img,
.wp-block-cover .wp-block-site-logo img,
.wp-block-columns .wp-block-site-logo img,
.wp-block-column .wp-block-site-logo img,
body.home main .wp-block-site-logo img,
body.front-page main .wp-block-site-logo img,
body.home .wp-site-blocks .wp-block-site-logo img,
body.front-page .wp-site-blocks .wp-block-site-logo img,
.wp-block-site-logo img[style],
body.home .wp-block-site-logo img[style],
body.front-page .wp-block-site-logo img[style],
html body.home .wp-block-site-logo img[style],
html body.front-page .wp-block-site-logo img[style],
.wp-block-site-logo img[width],
.wp-block-site-logo img[height] {
  width: 250px !important;
  height: auto !important;
  max-width: 250px !important;
  min-width: 250px !important;
  max-height: none !important;
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  object-fit: contain !important;
}

/* ADDITIONAL: Force logo container display properties for consistency */
.wp-block-site-logo {
  display: block !important;
  line-height: 0 !important;
  font-size: 0 !important;
}

/* DEBUG BORDERS REMOVED - Logo sizing should now be consistent across all pages */

/* Force consistent logo LINK size across ALL pages */
.wp-block-site-logo a,
body .wp-block-site-logo a,
body.home .wp-block-site-logo a,
body.front-page .wp-block-site-logo a,
html body.home .wp-block-site-logo a,
html body.front-page .wp-block-site-logo a,
header .wp-block-site-logo a,
.wp-block-template-part .wp-block-site-logo a {
  width: 250px !important;
  max-width: 250px !important;
  display: inline-block !important;
}

/* FORCE CONSISTENT .custom-logo SIZING ON ALL PAGES */
.custom-logo,
body .custom-logo,
html body .custom-logo,
body.home .custom-logo,
body.front-page .custom-logo,
.home .custom-logo,
img.custom-logo,
img[class*="custom-logo"],
.custom-logo-link img,
.custom-logo-link .custom-logo,
a.custom-logo-link img,
body .custom-logo-link img,
html body .custom-logo-link img,
img[alt*="logo"],
img[alt*="Logo"],
.site-logo img,
.header-logo img,
header img[src*="logo"],
header img[src*="Logo"] {
  width: 250px !important;
  height: auto !important;
  max-width: 250px !important;
  min-width: 250px !important;
  max-height: none !important;
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  object-fit: contain !important;
}

/* Also ensure the custom-logo-link container is consistent */
.custom-logo-link,
body .custom-logo-link,
a.custom-logo-link {
  width: 250px !important;
  max-width: 250px !important;
  min-width: 250px !important;
  display: inline-block !important;
}

/* Adjust GeoDirectory menu width constraints */
.gd-menu,
.geodir-menu,
[class*="gd-menu"] {
  max-width: none !important;
  width: 100% !important;
}

/* Force GeoDirectory menu logo to consistent size */
.gd-menu .wp-block-site-logo,
.geodir-menu .wp-block-site-logo,
[class*="gd-menu"] .wp-block-site-logo {
  width: 250px !important;
  max-width: 250px !important;
  min-width: 250px !important;
}

/* Force GeoDirectory navigation to accommodate larger logo */
.gd-menu .wp-block-group,
.geodir-menu .wp-block-group {
  max-width: none !important;
  width: 100% !important;
}

/* Specific GeoDirectory template part adjustments */
.wp-block-template-part:has(.gd-menu),
.wp-block-template-part:has(.geodir-menu) {
  max-width: none !important;
  width: 100% !important;
}

/* Allow the gd-menu container to accommodate consistent logo size */
.wp-block-template-part[data-slug="gd-menu"],
[data-slug="gd-menu"],
#gd-menu {
  overflow: visible !important;
  min-height: 60px !important;
}

/* Allow logo to break out of container */
.wp-block-site-logo {
  position: relative !important;
  z-index: 10 !important;
  overflow: visible !important;
}

/* Force template part to accommodate larger content */
.wp-block-template-part {
  overflow: visible !important;
}

/* Force GeoDirectory menu logo images to consistent size */
.gd-menu .wp-block-site-logo img,
[data-slug="gd-menu"] .wp-block-site-logo img {
  width: 250px !important;
  max-width: 250px !important;
  min-width: 250px !important;
  max-height: none !important;
  height: auto !important;
}

/* Course Logo Styling */
.course-logo {
  display: inline-block !important;
  vertical-align: middle !important;
  margin-right: 20px !important;
  margin-bottom: 10px !important;
}

.course-logo img {
  max-height: 120px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Title and Logo Container */
.entry-title-with-logo,
.wp-block-post-title-with-logo {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.entry-title-with-logo .course-logo,
.wp-block-post-title-with-logo .course-logo {
  flex-shrink: 0 !important;
}

/* Fix Donald Ross Involvement width to match course summary */
.geodir-field-ross_involvement,
[class*="ross_involvement"],
.gd-field-ross_involvement,
.geodir-field-ross_involvement .geodir-field-value,
[class*="ross_involvement"] .geodir-field-value,
.gd-field-ross_involvement .gd-field-value {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.geodir-field-ross_involvement p,
[class*="ross_involvement"] p,
.gd-field-ross_involvement p,
.geodir-field-ross_involvement .geodir-field-value p,
[class*="ross_involvement"] .geodir-field-value p {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 1em 0 !important;
  padding: 0 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  text-indent: 0 !important;
}

/* Target the specific container that might be constraining the width */
.gd-single-tabs .geodir-field-ross_involvement,
.gd-single-tabs [class*="ross_involvement"],
.geodir-single-tabs .geodir-field-ross_involvement,
.geodir-single-tabs [class*="ross_involvement"] {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  clear: both !important;
}

/* Ensure consistent width across all geodir fields */
.geodir-field-container,
.gd-field-container,
.geodir_post_meta .geodir-field,
.gd-post-meta .gd-field {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* Override any theme constraints on field widths */
.gd-single-tabs .geodir-field,
.geodir-single-tabs .geodir-field,
.gd-single-tabs .gd-field,
.geodir-single-tabs .gd-field {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
}

/* AGGRESSIVE width fixes for Ross Involvement */
.geodir-field-ross_involvement *,
[class*="ross_involvement"] *,
.gd-field-ross_involvement * {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* Force full width on any container that might be constraining */
.entry-content .geodir-field-ross_involvement,
.post-content .geodir-field-ross_involvement,
.gd-content .geodir-field-ross_involvement,
.geodir-content .geodir-field-ross_involvement {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Target any potential grid or flex containers */
.geodir-field-ross_involvement,
[class*="ross_involvement"] {
  grid-column: 1 / -1 !important;
  flex: 1 1 100% !important;
  width: 100% !important;
  max-width: none !important;
}

/* SUPER AGGRESSIVE width fixes - nuclear option */
.geodir-field-ross_involvement,
.geodir-field-ross_involvement *,
[class*="ross_involvement"],
[class*="ross_involvement"] * {
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: none !important;
  display: block !important;
}

/* Force full width by overriding common theme constraints */
.entry-content .geodir-field-ross_involvement,
.post-content .geodir-field-ross_involvement,
.page-content .geodir-field-ross_involvement,
.content .geodir-field-ross_involvement,
.main .geodir-field-ross_involvement,
article .geodir-field-ross_involvement {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Target Twenty Twenty-Four theme specifically */
.wp-block-post-content .geodir-field-ross_involvement,
.wp-site-blocks .geodir-field-ross_involvement {
  width: 100% !important;
  max-width: none !important;
}

/* Target the shortcode-based layout from your template */
.geodir-field-ross_involvement .geodir_post_meta,
.geodir-field-ross_involvement .geodir_post_meta * {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* Force full width on the shortcode container */
[gd_post_meta*="ross_involvement"],
.gd-post-meta-container .geodir-field-ross_involvement {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Override any wp-block constraints that might be applied by your template */
.wp-block-group.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained .geodir-field-ross_involvement,
.wp-block-group .geodir-field-ross_involvement {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Target the exact WordPress block structure from debug info */
.wp-block-group.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained .geodir-field-ross_involvement,
.wp-block-group.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained .geodir-field-ross_involvement .geodir_post_meta,
.wp-block-group.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained .geodir-field-ross_involvement * {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* NUCLEAR WIDTH FIX - Force break out of the constrained layout */
.geodir-field-ross_involvement {
  margin-left: calc(-1 * var(--wp--preset--spacing--50, 1.5rem)) !important;
  margin-right: calc(-1 * var(--wp--preset--spacing--50, 1.5rem)) !important;
  padding-left: var(--wp--preset--spacing--50, 1.5rem) !important;
  padding-right: var(--wp--preset--spacing--50, 1.5rem) !important;
  width: calc(100% + 2 * var(--wp--preset--spacing--50, 3rem)) !important;
}

/* ENHANCED WIDTH FIX - Target the container constraints */
.geodir-field-ross_involvement,
.geodir-field-ross_involvement .geodir_post_meta,
.geodir-field-ross_involvement * {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* Break out of WordPress block constraints */
.wp-block-group .geodir-field-ross_involvement {
  width: calc(100% + 3rem) !important;
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

/* ULTRA AGGRESSIVE WIDTH FIXES - Force Ross Involvement to match other content */
.geodir-field-ross_involvement {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw !important;
  max-width: 100vw !important;
  padding-left: calc(50vw - 50%) !important;
  padding-right: calc(50vw - 50%) !important;
  box-sizing: border-box !important;
}

/* Alternative approach - force to match parent container */
.geodir-field-ross_involvement {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
  float: none !important;
  clear: both !important;
}

/* Target the content wrapper specifically */
.entry-content .geodir-field-ross_involvement,
.wp-block-post-content .geodir-field-ross_involvement {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Force text content to match other paragraphs */
.geodir-field-ross_involvement p,
.geodir-field-ross_involvement .geodir-field-value,
.geodir-field-ross_involvement * {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 1em 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  text-align: left !important;
  line-height: 1.6 !important;
}

/* ===================================
   DONALD ROSS HISTORIC HERO SECTION - BREAK OUT OF ALL CONTAINERS
   =================================== */
.donald-ross-hero-section {
  position: relative !important;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  min-height: 450px !important;
  height: auto !important;
  margin-top: -20px !important;
  margin-bottom: 60px !important;
  overflow: hidden !important;
  background-color: #1a1a1a !important;
}

/* Force break out of WordPress block containers */
.wp-block-group .donald-ross-hero-section,
.wp-block-cover .donald-ross-hero-section,
.entry-content .donald-ross-hero-section,
.wp-block-post-content .donald-ross-hero-section,
.has-global-padding .donald-ross-hero-section {
  position: relative !important;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
}

/* Override any max-width constraints */
.donald-ross-hero-section,
.donald-ross-hero-section * {
  max-width: none !important;
}

/* Target the specific WordPress block structure shown in editor */
.wp-block-shortcode .donald-ross-hero-section,
.wp-block-html .donald-ross-hero-section {
  position: relative !important;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Force parent containers to allow overflow and remove spacing */
.wp-block-shortcode,
.wp-block-html {
  overflow: visible !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Ensure parent blocks don't constrain width */
.wp-block-group.is-layout-constrained,
.wp-block-group.has-global-padding {
  overflow-x: visible !important;
}

/* Remove any spacing from elements containing the hero shortcode */
p:has(.donald-ross-hero-section),
div:has(.donald-ross-hero-section) {
  margin: 0 !important;
  padding: 0 !important;
}

/* Also remove spacing from the preceding element if it might be creating gap */
.donald-ross-hero-section + *,
* + .donald-ross-hero-section {
  margin-top: 0 !important;
}

.donald-ross-hero-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 450px !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  transition: transform 10s ease-out !important;
}

.donald-ross-hero-section:hover .donald-ross-hero-image {
  transform: scale(1.05) !important;
}

/* No overlay - removed to show image clearly */
.donald-ross-hero-overlay {
  display: none !important;
}

.donald-ross-hero-content {
  position: relative !important;
  z-index: 2 !important;
  min-height: 450px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 60px 40px 80px !important;
  width: 100% !important;
}

.donald-ross-hero-title {
  font-size: 42px !important;
  font-weight: 700 !important;
  color: white !important;
  margin-bottom: 20px !important;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 1), 
               2px 2px 4px rgba(0, 0, 0, 1),
               0 0 20px rgba(0, 0, 0, 0.9) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
}

.donald-ross-hero-explanation {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: white !important;
  line-height: 1.5 !important;
  text-align: center !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 1),
               1px 1px 3px rgba(0, 0, 0, 1),
               0 0 15px rgba(0, 0, 0, 0.9) !important;
  padding: 0 40px !important;
}

.donald-ross-hero-explanation p {
  margin: 0 !important;
  color: white !important;
}

/* Removed button styles as they're no longer needed */

/* Statistics bar at bottom of hero */
.donald-ross-hero-stats {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  padding: 20px !important;
  z-index: 3 !important;
}

.donald-ross-hero-stats-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
}

.donald-ross-hero-stat {
  text-align: center !important;
}

.donald-ross-hero-stat-number {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #10B981 !important;
  margin-bottom: 5px !important;
}

.donald-ross-hero-stat-label {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Main Hero Text Styles (for top hero) */
.donald-ross-main-hero-text {
  text-align: center !important;
  width: 100% !important;
}

.donald-ross-main-title {
  font-size: 48px !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
}

.donald-ross-main-subtitle {
  font-size: 22px !important;
  font-weight: 400 !important;
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 800px !important;
  line-height: 1.5 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .donald-ross-hero-section {
    height: auto !important;
    min-height: 500px !important;
  }
  
  .donald-ross-hero-content {
    padding: 20px !important;
  }
  
  .donald-ross-hero-text-box {
    padding: 25px !important;
    max-width: 100% !important;
  }
  
  .donald-ross-hero-title {
    font-size: 28px !important;
  }
  
  .donald-ross-hero-explanation {
    font-size: 16px !important;
  }
  
  .donald-ross-hero-stat-number {
    font-size: 24px !important;
  }
  
  .donald-ross-hero-stats-inner {
    gap: 20px !important;
  }
  
  .donald-ross-main-title {
    font-size: 32px !important;
  }
  
  .donald-ross-main-subtitle {
    font-size: 18px !important;
  }
}

/* ===================================
   DONALD ROSS COMBINED HERO SECTION - FORCE FULL WIDTH
   =================================== */
.donald-ross-combined-hero {
  position: relative !important;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  height: 80vh !important;
  min-height: 600px !important;
  max-height: 800px !important;
  margin-top: 0 !important;
  margin-bottom: 60px !important;
  overflow: hidden !important;
  background-color: #1a1a1a !important;
}

/* Force break out of WordPress block containers */
.wp-block-group .donald-ross-combined-hero,
.wp-block-cover .donald-ross-combined-hero,
.entry-content .donald-ross-combined-hero,
.wp-block-post-content .donald-ross-combined-hero,
.has-global-padding .donald-ross-combined-hero,
.wp-block-shortcode .donald-ross-combined-hero,
.wp-block-html .donald-ross-combined-hero {
  position: relative !important;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
}

/* Override any max-width constraints on combined hero */
.donald-ross-combined-hero,
.donald-ross-combined-hero * {
  max-width: none !important;
}

/* Force parent containers to allow overflow for combined hero */
.wp-block-shortcode:has(.donald-ross-combined-hero),
.wp-block-html:has(.donald-ross-combined-hero) {
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove spacing around combined hero */
p:has(.donald-ross-combined-hero),
div:has(.donald-ross-combined-hero) {
  margin: 0 !important;
  padding: 0 !important;
}

.donald-ross-combined-hero + *,
* + .donald-ross-combined-hero {
  margin-top: 0 !important;
}

.donald-ross-combined-hero-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: transform 10s ease-out !important;
}

.donald-ross-combined-hero-image.donald-ross-fallback-bg {
  background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
}

.donald-ross-combined-hero:hover .donald-ross-combined-hero-image {
  transform: scale(1.02) !important;
}

.donald-ross-combined-hero-content {
  position: relative !important;
  z-index: 2 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 60px 40px 120px !important;
  width: 100% !important;
}

/* Main Hero Section (Centered) */
.donald-ross-combined-hero-main {
  text-align: center !important;
  flex: 0 0 auto !important;
  max-width: 1000px !important;
}

.donald-ross-combined-main-title {
  font-size: 48px !important;
  font-weight: 700 !important;
  color: white !important;
  margin-bottom: 20px !important;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 1),
               2px 2px 4px rgba(0, 0, 0, 1),
               0 0 20px rgba(0, 0, 0, 0.9) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
}

.donald-ross-combined-main-subtitle {
  font-size: 22px !important;
  font-weight: 400 !important;
  color: white !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 1),
               1px 1px 3px rgba(0, 0, 0, 1),
               0 0 15px rgba(0, 0, 0, 0.9) !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  line-height: 1.5 !important;
}

/* Section Content (Bottom) */
.donald-ross-combined-hero-section {
  text-align: center !important;
  flex: 0 0 auto !important;
  margin-top: auto !important;
}

.donald-ross-combined-section-title {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: white !important;
  margin-bottom: 20px !important;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 1),
               2px 2px 4px rgba(0, 0, 0, 1),
               0 0 20px rgba(0, 0, 0, 0.9) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
}

.donald-ross-combined-section-content {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: white !important;
  line-height: 1.5 !important;
  text-align: center !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 1),
               1px 1px 3px rgba(0, 0, 0, 1),
               0 0 15px rgba(0, 0, 0, 0.9) !important;
}

.donald-ross-combined-section-content p {
  margin: 0 !important;
  color: white !important;
}

/* Statistics bar at bottom */
.donald-ross-combined-hero-stats {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  padding: 20px !important;
  z-index: 3 !important;
}

.donald-ross-combined-hero-stats-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
}

.donald-ross-combined-hero-stat {
  text-align: center !important;
}

.donald-ross-combined-hero-stat-number {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #10B981 !important;
  margin-bottom: 5px !important;
}

.donald-ross-combined-hero-stat-label {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Mobile responsiveness for combined hero */
@media (max-width: 768px) {
  .donald-ross-combined-hero {
    height: 100vh !important;
    min-height: 700px !important;
  }
  
  .donald-ross-combined-hero-content {
    padding: 40px 20px 100px !important;
  }
  
  .donald-ross-combined-main-title {
    font-size: 32px !important;
  }
  
  .donald-ross-combined-main-subtitle {
    font-size: 18px !important;
  }
  
  .donald-ross-combined-section-title {
    font-size: 28px !important;
  }
  
  .donald-ross-combined-section-content {
    font-size: 16px !important;
  }
  
  .donald-ross-combined-hero-stat-number {
    font-size: 24px !important;
  }
  
  .donald-ross-combined-hero-stats-inner {
    gap: 20px !important;
  }
}

/* ===================================
   HOMEPAGE MAP STYLING - ENHANCED
   =================================== */
.z-search-map,
.z-search-map-combo,
.z-advanced-map {
  position: relative !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 40px auto 60px auto !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

/* Add a subtle header to the map section */
.z-search-map::before {
  content: "Find Donald Ross Golf Courses" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
  color: white !important;
  padding: 12px 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: center !important;
  z-index: 5 !important;
  letter-spacing: 0.5px !important;
}

/* Map container styling - adjusted for header */
.ross-courses-map,
.gd-map-container,
.z-search-map .gd-map,
.z-search-map iframe {
  border-radius: 0 0 12px 12px !important;
  border: none !important;
  margin-top: 45px !important; /* Space for header */
  height: calc(500px - 45px) !important; /* Adjust height for header */
}

/* Search overlay on map - positioned below header */
.search-overlay {
  position: absolute !important;
  top: 65px !important; /* Moved down to accommodate header */
  left: 20px !important;
  right: 20px !important;
  z-index: 10 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 8px !important;
  padding: 15px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

/* Enhanced search styling */
.z-search,
.z-search-map .gd-search-container,
.search-overlay .gd-search-container {
  margin: 0 !important;
}

.z-search input,
.z-search-map input[type="search"],
.search-overlay input[type="search"] {
  width: 100% !important;
  padding: 12px 20px !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  background: white !important;
  transition: all 0.3s ease !important;
}

.z-search input:focus,
.z-search-map input[type="search"]:focus,
.search-overlay input[type="search"]:focus {
  border-color: #10B981 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Map controls styling */
.gd-map-search-container {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 8px !important;
  padding: 15px !important;
  margin: 15px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Marker cluster styling */
.cluster {
  background: linear-gradient(135deg, #10B981 0%, #2d7a57 100%) !important;
  border: 3px solid white !important;
  border-radius: 50% !important;
  color: white !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
}

/* Mobile responsiveness for map */
@media (max-width: 768px) {
  .z-search-map,
  .z-search-map-combo,
  .z-advanced-map {
    margin: 20px 0 40px 0 !important;
    border-radius: 8px !important;
  }
  
  .search-overlay {
    top: 60px !important; /* Adjusted for mobile header */
    left: 15px !important;
    right: 15px !important;
    padding: 12px !important;
  }
  
  .z-search input,
  .search-overlay input[type="search"] {
    padding: 10px 16px !important;
    font-size: 16px !important;
  }
}

/* ===================================
   ZILLOW-STYLE FEATURED COURSES CAROUSEL
   =================================== */
.donald-ross-featured-carousel {
  max-width: 1200px !important;
  margin: 60px auto !important;
  padding: 0 20px !important;
}

.carousel-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 30px !important;
}

.carousel-title {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin: 0 !important;
}

.carousel-nav {
  display: flex !important;
  gap: 10px !important;
}

.carousel-prev,
.carousel-next {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 2px solid #e5e7eb !important;
  background: white !important;
  color: #6b7280 !important;
  font-size: 18px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.carousel-prev:hover,
.carousel-next:hover {
  border-color: #10B981 !important;
  color: #10B981 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2) !important;
}

.carousel-container {
  position: relative !important;
  overflow: hidden !important;
}

.carousel-track {
  display: flex !important;
  transition: transform 0.4s ease !important;
  gap: 20px !important;
}

.carousel-card {
  flex: 0 0 calc(25% - 15px) !important;
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  position: relative !important;
}

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

/* Ensure card contents don't shift on hover */
.carousel-card:hover .card-badge {
  transform: none !important;
  position: absolute !important;
}

.carousel-card:hover .card-tracking-buttons {
  transform: none !important;
  position: absolute !important;
}

/* Card Image Link Styling */
.card-image-link {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

.card-image-link:hover {
  text-decoration: none !important;
}

.donald-ross-featured-carousel .card-image {
  position: relative !important;
  height: 200px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.donald-ross-featured-carousel .card-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  z-index: 5 !important;
  pointer-events: none !important;
  max-width: calc(100% - 100px) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.card-badge.course-type {
  background: linear-gradient(135deg, #1e5e3a 0%, #4ade80 100%) !important;
  color: white !important;
}

.card-badge.recently-opened {
  background: linear-gradient(135deg, #10b981 0%, #2d7a57 100%) !important;
  color: white !important;
  top: 50px !important;
}

.card-favorite {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
}

.card-favorite:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.1) !important;
}

/* Carousel heart styles - AGGRESSIVE OVERRIDES */
.card-favorite i.fa-heart,
.card-favorite i.fas.fa-heart,
.card-favorite i.far.fa-heart,
body .card-favorite i.fa-heart,
body .card-favorite i.fas.fa-heart,
body .card-favorite i.far.fa-heart,
.donald-ross-featured-carousel .card-favorite i.fa-heart,
.donald-ross-featured-carousel .card-favorite i.fas.fa-heart,
.donald-ross-featured-carousel .card-favorite i.far.fa-heart {
  color: #ef4444 !important;
  background: transparent !important;
  background-color: transparent !important;
}

.card-favorite:hover i.fa-heart,
.card-favorite:hover i.fas.fa-heart,
.card-favorite:hover i.far.fa-heart,
body .card-favorite:hover i.fa-heart,
body .card-favorite:hover i.fas.fa-heart,
body .card-favorite:hover i.far.fa-heart,
.donald-ross-featured-carousel .card-favorite:hover i.fa-heart,
.donald-ross-featured-carousel .card-favorite:hover i.fas.fa-heart,
.donald-ross-featured-carousel .card-favorite:hover i.far.fa-heart {
  color: #dc2626 !important;
  background: transparent !important;
  background-color: transparent !important;
}

/* Remove background from carousel heart buttons */
.card-favorite,
body .card-favorite,
.donald-ross-featured-carousel .card-favorite {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  border: none !important;
}

/* Course tracking buttons in carousel */
.donald-ross-featured-carousel .card-tracking-buttons {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  z-index: 10 !important;
}

.donald-ross-featured-carousel .course-played-btn,
.donald-ross-featured-carousel .course-want-to-play-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
}

.donald-ross-featured-carousel .course-played-btn {
  color: #10B981 !important;
}

.donald-ross-featured-carousel .course-want-to-play-btn {
  color: #3B82F6 !important;
}

.donald-ross-featured-carousel .course-played-btn:hover,
.donald-ross-featured-carousel .course-want-to-play-btn:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.1) !important;
}

.donald-ross-featured-carousel .course-played-btn.active {
  background: #10B981 !important;
  color: white !important;
}

.donald-ross-featured-carousel .course-want-to-play-btn.active {
  background: #3B82F6 !important;
  color: white !important;
}

.donald-ross-featured-carousel .course-played-btn:disabled,
.donald-ross-featured-carousel .course-want-to-play-btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Enhanced tooltips for course tracking buttons */
.donald-ross-featured-carousel .course-played-btn[title],
.donald-ross-featured-carousel .course-want-to-play-btn[title] {
  position: relative !important;
}

.donald-ross-featured-carousel .course-played-btn[title]:hover::after,
.donald-ross-featured-carousel .course-want-to-play-btn[title]:hover::after {
  content: attr(title) !important;
  position: absolute !important;
  bottom: -35px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(0, 0, 0, 0.9) !important;
  color: white !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  white-space: nowrap !important;
  z-index: 1000 !important;
  pointer-events: none !important;
}

.donald-ross-featured-carousel .course-played-btn[title]:hover::before,
.donald-ross-featured-carousel .course-want-to-play-btn[title]:hover::before {
  content: '' !important;
  position: absolute !important;
  bottom: -25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: 5px solid transparent !important;
  border-bottom-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 1000 !important;
  pointer-events: none !important;
}

.card-content {
  padding: 20px !important;
}

.card-location {
  font-size: 14px !important;
  color: #6b7280 !important;
  margin-bottom: 8px !important;
  font-weight: 500 !important;
}

.card-title {
  margin: 0 0 15px 0 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

.card-title a {
  color: #1f2937 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.card-title a:hover {
  color: #10B981 !important;
}

.card-details {
  display: flex !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}

.card-details span {
  font-size: 13px !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
  background: #f3f4f6 !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
}

.carousel-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 30px !important;
}

.carousel-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  border: none !important;
  background: #d1d5db !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.carousel-dot.active {
  background: #10B981 !important;
  transform: scale(1.2) !important;
}

.carousel-dot:hover {
  background: #6b7280 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .carousel-header {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
  }
  
  .carousel-title {
    font-size: 24px !important;
  }
  
  .carousel-card {
    flex: 0 0 calc(100% - 10px) !important;
  }
  
  .carousel-track {
    gap: 15px !important;
  }
  
  .card-content {
    padding: 15px !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .carousel-card {
    flex: 0 0 calc(50% - 10px) !important;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .carousel-card {
    flex: 0 0 calc(33.333% - 14px) !important;
  }
}

/* My Favorites Section Styling */
.my-favorites-section {
  max-width: 1800px !important;
  margin: 0 auto 40px !important;
  padding: 0 20px !important;
}

/* Favorites Table Layout */
.favorites-table-container {
  overflow-x: auto !important;
  margin-top: 20px !important;
}

.favorites-table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.favorites-table thead {
  background: #f8fafc !important;
}

.favorites-table thead th {
  padding: 18px 30px !important;
  text-align: left !important;
  font-weight: 600 !important;
  color: #374151 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.025em !important;
  border-bottom: 2px solid #e5e7eb !important;
}

.favorites-table thead th.heart-column {
  width: 80px !important;
  text-align: center !important;
  padding: 18px 15px !important;
}

.favorites-table tbody tr {
  border-bottom: 1px solid #e5e7eb !important;
  transition: background-color 0.2s ease !important;
}

.favorites-table tbody tr:hover {
  background: #f9fafb !important;
}

.favorites-table tbody tr:last-child {
  border-bottom: none !important;
}

.favorites-table tbody td {
  padding: 24px 30px !important;
  vertical-align: middle !important;
}

.favorites-table .course-name {
  min-width: 400px !important;
}

.favorites-table .course-location {
  min-width: 250px !important;
}

.favorites-table .course-rating {
  min-width: 220px !important;
}

.course-name .course-link {
  font-weight: 600 !important;
  color: #1e5e3a !important;
  text-decoration: none !important;
  font-size: 16px !important;
}

.course-name .course-link:hover {
  color: #4ade80 !important;
}

.course-location {
  color: #6b7280 !important;
  font-size: 14px !important;
}

.rating-display {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.rating-number {
  font-weight: 600 !important;
  color: #374151 !important;
  font-size: 16px !important;
}

.rating-stars {
  display: flex !important;
  gap: 2px !important;
}

.rating-stars i {
  color: #fbbf24 !important;
  font-size: 14px !important;
}

.no-rating {
  color: #9ca3af !important;
  font-style: italic !important;
  font-size: 14px !important;
}

.favorite-remove-btn {
  background: #ef4444 !important;
  color: white !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.favorite-remove-btn:hover {
  background: #dc2626 !important;
}

/* Heart button for favorites table */
.favorite-heart-btn {
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 8px !important;
  font-size: 20px !important;
  transition: all 0.2s ease !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.favorite-heart-btn:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  transform: scale(1.1) !important;
  box-shadow: none !important;
}

/* All heart icons should be red - AGGRESSIVE OVERRIDES */
.favorite-heart-btn i.fa-heart,
.favorite-heart-btn i.fas.fa-heart,
.favorite-heart-btn i.far.fa-heart,
table .favorite-heart-btn i.fa-heart,
table .favorite-heart-btn i.fas.fa-heart,
table .favorite-heart-btn i.far.fa-heart,
body .favorite-heart-btn i.fa-heart,
body .favorite-heart-btn i.fas.fa-heart,
body .favorite-heart-btn i.far.fa-heart {
  color: #ef4444 !important;
  background: transparent !important;
  background-color: transparent !important;
}

.favorite-heart-btn:hover i.fa-heart,
.favorite-heart-btn:hover i.fas.fa-heart,
.favorite-heart-btn:hover i.far.fa-heart,
table .favorite-heart-btn:hover i.fa-heart,
table .favorite-heart-btn:hover i.fas.fa-heart,
table .favorite-heart-btn:hover i.far.fa-heart,
body .favorite-heart-btn:hover i.fa-heart,
body .favorite-heart-btn:hover i.fas.fa-heart,
body .favorite-heart-btn:hover i.far.fa-heart {
  color: #dc2626 !important;
  background: transparent !important;
  background-color: transparent !important;
}

/* Remove any background colors from heart buttons */
.favorite-heart-btn,
table .favorite-heart-btn,
body .favorite-heart-btn {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.course-actions {
  text-align: center !important;
  width: 80px !important;
  padding: 18px 15px !important;
}

.favorite-list-item {
  display: flex !important;
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

.favorite-list-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.favorite-item-image {
  flex: 0 0 200px !important;
  height: 150px !important;
}

.favorite-item-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.favorite-item-content {
  flex: 1 !important;
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.favorite-item-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  margin-bottom: 16px !important;
}

.favorite-item-title h4 {
  margin: 0 0 8px 0 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #1e5e3a !important;
}

.favorite-item-title h4 a {
  color: inherit !important;
  text-decoration: none !important;
}

.favorite-item-title h4 a:hover {
  color: #4ade80 !important;
}

.favorite-item-location {
  font-size: 14px !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}

.favorite-item-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 12px !important;
}

.favorite-item-rating {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.favorite-item-rating .rating-label {
  font-size: 14px !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
}

.favorite-remove-btn {
  background: none !important;
  border: none !important;
  color: #ef4444 !important;
  font-size: 18px !important;
  cursor: pointer !important;
  padding: 8px !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}

.favorite-remove-btn:hover {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

.favorite-item-details {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.detail-item {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 14px !important;
  color: #6b7280 !important;
  background: #f3f4f6 !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
}

.detail-item i {
  font-size: 12px !important;
}

/* Star Rating Styling */
.star-rating, .course-star-rating {
  display: flex !important;
  gap: 2px !important;
}

.star-rating .star, .course-star-rating .star {
  font-size: 18px !important;
  color: #d1d5db !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.star-rating .star:hover, .course-star-rating .star:hover,
.star-rating .star.filled, .course-star-rating .star.filled {
  color: #fbbf24 !important;
}

.star-rating .star:hover ~ .star, .course-star-rating .star:hover ~ .star {
  color: #d1d5db !important;
}

.my-favorites-section h3 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #1e5e3a !important;
  margin-bottom: 24px !important;
  text-align: left !important;
}

.my-favorites-login-prompt,
.my-favorites-empty {
  text-align: center !important;
  padding: 60px 20px !important;
  background: #f8fafc !important;
  border-radius: 12px !important;
  border: 1px solid #e5e7eb !important;
}

.my-favorites-login-prompt h3,
.my-favorites-empty h3 {
  color: #1e5e3a !important;
  margin-bottom: 16px !important;
}

.my-favorites-login-prompt p,
.my-favorites-empty p {
  color: #6b7280 !important;
  font-size: 16px !important;
  margin-bottom: 0 !important;
}

.my-favorites-login-prompt a {
  color: #1e5e3a !important;
  text-decoration: underline !important;
}

.favorites-grid {
  display: grid !important;
  gap: 24px !important;
}

.favorites-grid.columns-1 {
  grid-template-columns: 1fr !important;
}

.favorites-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

.favorites-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.favorite-card {
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

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

.favorite-card-link {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

.favorite-card-link:hover {
  text-decoration: none !important;
}

.favorite-card-image {
  position: relative !important;
  height: 200px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.favorite-card-content {
  padding: 20px !important;
}

.favorite-card-location {
  font-size: 14px !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 8px !important;
}

.favorite-card-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1e5e3a !important;
  margin-bottom: 12px !important;
  line-height: 1.3 !important;
}

.favorite-card-details {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  font-size: 14px !important;
  color: #6b7280 !important;
}

.favorite-card-details span {
  background: #f3f4f6 !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
}

/* Course Page Favorite Button Styling */
.course-favorite-container {
  margin: 20px 0 !important;
}

.course-favorite-container.style-button {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.course-favorite-container.style-icon {
  display: inline-block !important;
}

.course-favorite-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: white !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
}

/* Size variations */
.course-favorite-container.size-small .course-favorite-btn {
  width: 40px !important;
  height: 40px !important;
  font-size: 16px !important;
}

.course-favorite-container.size-medium .course-favorite-btn {
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
}

.course-favorite-container.size-large .course-favorite-btn {
  width: 60px !important;
  height: 60px !important;
  font-size: 24px !important;
}

/* Course page favorite button heart styles */
.course-favorite-btn:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: #ef4444 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2) !important;
}

/* All course page heart icons should be red */
.course-favorite-btn i.fa-heart,
.course-favorite-btn i.fas.fa-heart,
.course-favorite-btn i.far.fa-heart {
  color: #ef4444 !important;
}

.course-favorite-btn:hover i.fa-heart,
.course-favorite-btn:hover i.fas.fa-heart,
.course-favorite-btn:hover i.far.fa-heart {
  color: #dc2626 !important;
}

.course-login-prompt {
  text-align: center !important;
  padding: 20px !important;
  background: #f8fafc !important;
  border-radius: 8px !important;
  border: 1px solid #e5e7eb !important;
}

.course-login-prompt p {
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 16px !important;
}

.course-login-prompt a {
  color: #1e5e3a !important;
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .my-favorites-section {
    padding: 0 16px !important;
  }
  
  .favorites-table-container {
    overflow-x: auto !important;
  }
  
  .favorites-table {
    min-width: 700px !important;
  }
  
  .favorites-table thead th,
  .favorites-table tbody td {
    padding: 12px 16px !important;
  }
  
  .favorites-table thead th {
    font-size: 12px !important;
  }
  
  .course-name .course-link {
    font-size: 14px !important;
  }
  
  .course-location {
    font-size: 13px !important;
  }
  
  .rating-number {
    font-size: 14px !important;
  }
  
  .rating-stars i {
    font-size: 12px !important;
  }
  
  .favorite-remove-btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
  
  .course-favorite-container.style-button {
    justify-content: center !important;
  }
}

/* ============================================
   Course Tracking - Have Played & Want to Play
   ============================================ */

/* Course Tracking Buttons Container */
.course-tracking-buttons {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.course-tracking-buttons.layout-vertical {
  flex-direction: column;
  max-width: 250px;
}

.course-tracking-buttons.layout-horizontal {
  flex-direction: row;
  align-items: center;
}

/* Course Tracking Buttons */
.course-played-btn,
.course-want-to-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

/* Played Button (Checkmark) */
.course-played-btn {
  border-color: #28a745;
  color: #28a745;
}

.course-played-btn:hover:not(:disabled) {
  background: #28a745;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.course-played-btn.active {
  background: #28a745;
  color: white;
  border-color: #28a745;
}

.course-played-btn i {
  font-size: 16px;
}

/* Want to Play Button (Bookmark) */
.course-want-to-play-btn {
  border-color: #007bff;
  color: #007bff;
}

.course-want-to-play-btn:hover:not(:disabled) {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.course-want-to-play-btn.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.course-want-to-play-btn i {
  font-size: 16px;
}

/* Disabled state */
.course-played-btn:disabled,
.course-want-to-play-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5;
  color: #999;
  border-color: #ddd;
}

/* Icon-only style */
.course-tracking-buttons.style-icon-only .course-played-btn,
.course-tracking-buttons.style-icon-only .course-want-to-play-btn {
  padding: 10px;
  min-width: 44px;
  justify-content: center;
}

.course-tracking-buttons.style-icon-only .button-label {
  display: none;
}

/* Outline style */
.course-tracking-buttons.style-outline .course-played-btn,
.course-tracking-buttons.style-outline .course-want-to-play-btn {
  background: transparent;
}

.course-tracking-buttons.style-outline .course-played-btn.active {
  background: rgba(40, 167, 69, 0.1);
}

.course-tracking-buttons.style-outline .course-want-to-play-btn.active {
  background: rgba(0, 123, 255, 0.1);
}

/* Card Tracking Buttons (for course cards) */
.card-tracking-buttons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.card-played-btn,
.card-want-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card-played-btn {
  color: #28a745;
}

.card-played-btn:hover {
  background: #28a745;
  color: white;
  transform: scale(1.1);
}

.card-played-btn.active {
  background: #28a745;
  color: white;
}

.card-want-btn {
  color: #007bff;
}

.card-want-btn:hover {
  background: #007bff;
  color: white;
  transform: scale(1.1);
}

.card-want-btn.active {
  background: #007bff;
  color: white;
}

.card-want-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #f5f5f5;
}

/* My Played Courses Section */
.my-played-courses-section,
.my-want-to-play-section {
  margin: 40px 0;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.my-played-courses-section h3,
.my-want-to-play-section h3 {
  color: #1e5e3a;
  font-size: 24px;
  margin-bottom: 25px;
  border-bottom: 2px solid #1e5e3a;
  padding-bottom: 10px;
}

/* Course Tracking Dashboard Styling - High Specificity */
body .course-tracking-dashboard,
.wp-site-blocks .course-tracking-dashboard,
.entry-content .course-tracking-dashboard,
main .course-tracking-dashboard {
  max-width: 1400px !important;
  margin: 40px auto !important;
  background: #f8fafc !important;
  border-radius: 16px !important;
  padding: 40px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  font-family: inherit !important;
}

body .course-tracking-dashboard h2,
.wp-site-blocks .course-tracking-dashboard h2,
.entry-content .course-tracking-dashboard h2,
main .course-tracking-dashboard h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1e5e3a !important;
  margin-bottom: 8px !important;
  text-align: center !important;
}

body .course-tracking-dashboard .dashboard-subtitle,
.wp-site-blocks .course-tracking-dashboard .dashboard-subtitle,
.entry-content .course-tracking-dashboard .dashboard-subtitle,
main .course-tracking-dashboard .dashboard-subtitle {
  text-align: center !important;
  color: #6b7280 !important;
  font-size: 16px !important;
  margin-bottom: 40px !important;
}

/* Tab Navigation - High Specificity */
body .course-tracking-dashboard .course-tabs,
.wp-site-blocks .course-tracking-dashboard .course-tabs,
.entry-content .course-tracking-dashboard .course-tabs,
main .course-tracking-dashboard .course-tabs {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 40px !important;
  background: white !important;
  border-radius: 12px !important;
  padding: 8px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  gap: 8px !important;
}

body .course-tracking-dashboard .tab-btn,
.wp-site-blocks .course-tracking-dashboard .tab-btn,
.entry-content .course-tracking-dashboard .tab-btn,
main .course-tracking-dashboard .tab-btn {
  flex: 1 !important;
  max-width: 250px !important;
  padding: 16px 24px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

body .course-tracking-dashboard .tab-btn.active,
.wp-site-blocks .course-tracking-dashboard .tab-btn.active,
.entry-content .course-tracking-dashboard .tab-btn.active,
main .course-tracking-dashboard .tab-btn.active {
  background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(30, 94, 58, 0.3) !important;
}

body .course-tracking-dashboard .tab-btn:hover:not(.active),
.wp-site-blocks .course-tracking-dashboard .tab-btn:hover:not(.active),
.entry-content .course-tracking-dashboard .tab-btn:hover:not(.active),
main .course-tracking-dashboard .tab-btn:hover:not(.active) {
  background: #f3f4f6 !important;
  color: #1e5e3a !important;
}

body .course-tracking-dashboard .tab-btn .tab-icon,
.wp-site-blocks .course-tracking-dashboard .tab-btn .tab-icon,
.entry-content .course-tracking-dashboard .tab-btn .tab-icon,
main .course-tracking-dashboard .tab-btn .tab-icon {
  font-size: 18px !important;
}

body .course-tracking-dashboard .tab-btn .tab-count,
.wp-site-blocks .course-tracking-dashboard .tab-btn .tab-count,
.entry-content .course-tracking-dashboard .tab-btn .tab-count,
main .course-tracking-dashboard .tab-btn .tab-count {
  background: rgba(255, 255, 255, 0.2) !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  min-width: 24px !important;
  text-align: center !important;
}

body .course-tracking-dashboard .tab-btn:not(.active) .tab-count,
.wp-site-blocks .course-tracking-dashboard .tab-btn:not(.active) .tab-count,
.entry-content .course-tracking-dashboard .tab-btn:not(.active) .tab-count,
main .course-tracking-dashboard .tab-btn:not(.active) .tab-count {
  background: #e5e7eb !important;
  color: #6b7280 !important;
}

/* Tab Content */
body .course-tracking-dashboard .tab-content,
.wp-site-blocks .course-tracking-dashboard .tab-content,
.entry-content .course-tracking-dashboard .tab-content,
main .course-tracking-dashboard .tab-content {
  display: none !important;
  animation: fadeIn 0.4s ease !important;
}

body .course-tracking-dashboard .tab-content.active,
.wp-site-blocks .course-tracking-dashboard .tab-content.active,
.entry-content .course-tracking-dashboard .tab-content.active,
main .course-tracking-dashboard .tab-content.active {
  display: block !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Empty State */
body .course-tracking-dashboard .empty-state,
.wp-site-blocks .course-tracking-dashboard .empty-state,
.entry-content .course-tracking-dashboard .empty-state,
main .course-tracking-dashboard .empty-state {
  text-align: center !important;
  padding: 80px 40px !important;
  background: white !important;
  border-radius: 16px !important;
  border: 2px dashed #d1d5db !important;
}

body .course-tracking-dashboard .empty-state i,
.wp-site-blocks .course-tracking-dashboard .empty-state i,
.entry-content .course-tracking-dashboard .empty-state i,
main .course-tracking-dashboard .empty-state i {
  font-size: 64px !important;
  color: #d1d5db !important;
  margin-bottom: 24px !important;
}

body .course-tracking-dashboard .empty-state p:first-of-type,
.wp-site-blocks .course-tracking-dashboard .empty-state p:first-of-type,
.entry-content .course-tracking-dashboard .empty-state p:first-of-type,
main .course-tracking-dashboard .empty-state p:first-of-type {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-bottom: 8px !important;
}

body .course-tracking-dashboard .empty-state p:last-of-type,
.wp-site-blocks .course-tracking-dashboard .empty-state p:last-of-type,
.entry-content .course-tracking-dashboard .empty-state p:last-of-type,
main .course-tracking-dashboard .empty-state p:last-of-type {
  color: #6b7280 !important;
  font-size: 16px !important;
  margin: 0 !important;
}

/* Enhanced Table Styling */
body .course-tracking-dashboard .courses-table-wrapper,
.wp-site-blocks .course-tracking-dashboard .courses-table-wrapper,
.entry-content .course-tracking-dashboard .courses-table-wrapper,
main .course-tracking-dashboard .courses-table-wrapper {
  background: white !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #e5e7eb !important;
}

body .course-tracking-dashboard .courses-table,
.wp-site-blocks .course-tracking-dashboard .courses-table,
.entry-content .course-tracking-dashboard .courses-table,
main .course-tracking-dashboard .courses-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 15px !important;
}

body .course-tracking-dashboard .courses-table thead,
.wp-site-blocks .course-tracking-dashboard .courses-table thead,
.entry-content .course-tracking-dashboard .courses-table thead,
main .course-tracking-dashboard .courses-table thead {
  background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
}

body .course-tracking-dashboard .courses-table thead th,
.wp-site-blocks .course-tracking-dashboard .courses-table thead th,
.entry-content .course-tracking-dashboard .courses-table thead th,
main .course-tracking-dashboard .courses-table thead th {
  padding: 20px 24px !important;
  color: white !important;
  font-weight: 700 !important;
  text-align: left !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border: none !important;
  position: relative !important;
}

body .course-tracking-dashboard .courses-table thead th:first-child,
.wp-site-blocks .course-tracking-dashboard .courses-table thead th:first-child,
.entry-content .course-tracking-dashboard .courses-table thead th:first-child,
main .course-tracking-dashboard .courses-table thead th:first-child {
  border-radius: 0 !important;
}

body .course-tracking-dashboard .courses-table thead th:last-child,
.wp-site-blocks .course-tracking-dashboard .courses-table thead th:last-child,
.entry-content .course-tracking-dashboard .courses-table thead th:last-child,
main .course-tracking-dashboard .courses-table thead th:last-child {
  border-radius: 0 !important;
  text-align: center !important;
}

body .course-tracking-dashboard .courses-table tbody tr,
.wp-site-blocks .course-tracking-dashboard .courses-table tbody tr,
.entry-content .course-tracking-dashboard .courses-table tbody tr,
main .course-tracking-dashboard .courses-table tbody tr {
  border-bottom: 1px solid #f1f5f9 !important;
  transition: all 0.3s ease !important;
}

body .course-tracking-dashboard .courses-table tbody tr:hover,
.wp-site-blocks .course-tracking-dashboard .courses-table tbody tr:hover,
.entry-content .course-tracking-dashboard .courses-table tbody tr:hover,
main .course-tracking-dashboard .courses-table tbody tr:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  transform: translateX(4px) !important;
}

body .course-tracking-dashboard .courses-table tbody tr:last-child,
.wp-site-blocks .course-tracking-dashboard .courses-table tbody tr:last-child,
.entry-content .course-tracking-dashboard .courses-table tbody tr:last-child,
main .course-tracking-dashboard .courses-table tbody tr:last-child {
  border-bottom: none !important;
}

body .course-tracking-dashboard .courses-table tbody td,
.wp-site-blocks .course-tracking-dashboard .courses-table tbody td,
.entry-content .course-tracking-dashboard .courses-table tbody td,
main .course-tracking-dashboard .courses-table tbody td {
  padding: 24px !important;
  vertical-align: middle !important;
  border: none !important;
}

/* Course Name Styling */
body .course-tracking-dashboard .course-link,
.wp-site-blocks .course-tracking-dashboard .course-link,
.entry-content .course-tracking-dashboard .course-link,
main .course-tracking-dashboard .course-link {
  color: #1e5e3a !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}

body .course-tracking-dashboard .course-link:hover,
.wp-site-blocks .course-tracking-dashboard .course-link:hover,
.entry-content .course-tracking-dashboard .course-link:hover,
main .course-tracking-dashboard .course-link:hover {
  color: #2d7a57 !important;
  transform: translateX(4px) !important;
}

/* Location Styling */
body .course-tracking-dashboard .courses-table tbody td:nth-child(2),
.wp-site-blocks .course-tracking-dashboard .courses-table tbody td:nth-child(2),
.entry-content .course-tracking-dashboard .courses-table tbody td:nth-child(2),
main .course-tracking-dashboard .courses-table tbody td:nth-child(2) {
  color: #6b7280 !important;
  font-weight: 500 !important;
}

/* Details Styling */
body .course-tracking-dashboard .detail,
.wp-site-blocks .course-tracking-dashboard .detail,
.entry-content .course-tracking-dashboard .detail,
main .course-tracking-dashboard .detail {
  display: inline-block !important;
  background: #f0fdf4 !important;
  color: #15803d !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-right: 8px !important;
  margin-bottom: 4px !important;
}

/* Ross Involvement Styling */
body .course-tracking-dashboard .courses-table tbody td:nth-child(4),
.wp-site-blocks .course-tracking-dashboard .courses-table tbody td:nth-child(4),
.entry-content .course-tracking-dashboard .courses-table tbody td:nth-child(4),
main .course-tracking-dashboard .courses-table tbody td:nth-child(4) {
  font-weight: 600 !important;
  color: #1e5e3a !important;
}

/* Action Buttons */
body .course-tracking-dashboard .courses-table tbody td:last-child,
.wp-site-blocks .course-tracking-dashboard .courses-table tbody td:last-child,
.entry-content .course-tracking-dashboard .courses-table tbody td:last-child,
main .course-tracking-dashboard .courses-table tbody td:last-child {
  text-align: center !important;
  white-space: nowrap !important;
}

body .course-tracking-dashboard .remove-course-btn,
body .course-tracking-dashboard .mark-played-btn,
.wp-site-blocks .course-tracking-dashboard .remove-course-btn,
.wp-site-blocks .course-tracking-dashboard .mark-played-btn,
.entry-content .course-tracking-dashboard .remove-course-btn,
.entry-content .course-tracking-dashboard .mark-played-btn,
main .course-tracking-dashboard .remove-course-btn,
main .course-tracking-dashboard .mark-played-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 10px 16px !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin: 0 4px !important;
}

body .course-tracking-dashboard .remove-course-btn,
.wp-site-blocks .course-tracking-dashboard .remove-course-btn,
.entry-content .course-tracking-dashboard .remove-course-btn,
main .course-tracking-dashboard .remove-course-btn {
  background: #fee2e2 !important;
  color: #dc2626 !important;
}

body .course-tracking-dashboard .remove-course-btn:hover,
.wp-site-blocks .course-tracking-dashboard .remove-course-btn:hover,
.entry-content .course-tracking-dashboard .remove-course-btn:hover,
main .course-tracking-dashboard .remove-course-btn:hover {
  background: #dc2626 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
}

body .course-tracking-dashboard .mark-played-btn,
.wp-site-blocks .course-tracking-dashboard .mark-played-btn,
.entry-content .course-tracking-dashboard .mark-played-btn,
main .course-tracking-dashboard .mark-played-btn {
  background: #d1fae5 !important;
  color: #16a34a !important;
}

body .course-tracking-dashboard .mark-played-btn:hover,
.wp-site-blocks .course-tracking-dashboard .mark-played-btn:hover,
.entry-content .course-tracking-dashboard .mark-played-btn:hover,
main .course-tracking-dashboard .mark-played-btn:hover {
  background: #16a34a !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .course-tracking-dashboard {
    padding: 20px !important;
    margin: 20px !important;
  }
  
  .course-tabs {
    flex-direction: column !important;
    gap: 4px !important;
  }
  
  .tab-btn {
    max-width: none !important;
    padding: 14px 20px !important;
  }
  
  .courses-table-wrapper {
    overflow-x: auto !important;
  }
  
  .courses-table {
    min-width: 700px !important;
  }
  
  .courses-table thead th,
  .courses-table tbody td {
    padding: 16px 12px !important;
    font-size: 14px !important;
  }
  
  .course-link {
    font-size: 15px !important;
  }
  
  .remove-course-btn,
  .mark-played-btn {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }
}

.course-tracking-table .course-name {
  font-weight: 600;
  min-width: 200px;
}

.course-tracking-table .course-name a {
  color: #1e5e3a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.course-tracking-table .course-name a:hover {
  color: #2d7a57;
  text-decoration: underline;
}

.course-tracking-table .course-location {
  color: #666;
  min-width: 150px;
}

.course-tracking-table .course-details {
  color: #777;
  font-size: 13px;
}

.course-tracking-table .detail-item {
  display: inline-block;
  margin-right: 15px;
  padding: 2px 8px;
  background: #f0f0f0;
  border-radius: 4px;
}

.course-tracking-table .course-rating {
  white-space: nowrap;
}

.course-tracking-table .user-rating i,
.course-tracking-table .community-rating i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 2px;
}

.course-tracking-table .rating-count {
  color: #999;
  font-size: 12px;
  margin-left: 5px;
}

.course-tracking-table .rate-link {
  color: #007bff;
  text-decoration: none;
  font-size: 13px;
}

.course-tracking-table .rate-link:hover {
  text-decoration: underline;
}

.course-tracking-table .no-rating {
  color: #999;
  font-style: italic;
  font-size: 13px;
}

.course-tracking-table .date-played,
.course-tracking-table .date-added {
  color: #777;
  font-size: 13px;
  white-space: nowrap;
}

.course-tracking-table .course-actions {
  text-align: center;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.course-tracking-table .course-actions button {
  display: inline-block;
  margin: 0 2px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  vertical-align: middle;
  white-space: nowrap;
}
.course-tracking-table .course-actions button:hover {
  background: #f8f8f8;
  border-color: #1e5e3a;
  color: #1e5e3a;
}

/* Combined Course Tracker Section */
.course-tracker-combined {
  margin: 40px 0;
}

.course-tracker-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}

.course-tracker-tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #666;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: -2px;
}

.course-tracker-tab:hover {
  color: #1e5e3a;
}

.course-tracker-tab.active {
  color: #1e5e3a;
  border-bottom-color: #1e5e3a;
}

.course-tracker-tab .tab-count {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: normal;
}

.course-tracker-tab.active .tab-count {
  background: #1e5e3a;
  color: white;
}

.course-tracker-content {
  display: none;
}

.course-tracker-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.played-courses-list,
.want-to-play-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.played-course-item,
.want-to-play-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.played-course-item:hover,
.want-to-play-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.played-course-info,
.want-course-info {
  flex: 1;
}

.played-course-info h4,
.want-course-info h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.played-course-info h4 a,
.want-course-info h4 a {
  color: #1e5e3a;
  text-decoration: none;
}

.played-course-info h4 a:hover,
.want-course-info h4 a:hover {
  text-decoration: underline;
}

.course-location {
  color: #666;
  font-size: 14px;
  margin: 5px 0;
}

.date-played,
.date-added {
  color: #999;
  font-size: 13px;
  font-style: italic;
}

.played-course-remove,
.want-course-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dc3545;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.played-course-remove:hover,
.want-course-remove:hover {
  background: #c82333;
  transform: rotate(90deg);
}

.want-course-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mark-as-played-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mark-as-played-btn:hover:not(:disabled) {
  background: #218838;
  transform: translateY(-2px);
}

.mark-as-played-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Login prompts */
.my-played-courses-login,
.my-want-to-play-login,
.my-played-courses-empty,
.my-want-to-play-empty {
  padding: 30px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 12px;
  margin: 40px 0;
}

.my-played-courses-login h3,
.my-want-to-play-login h3,
.my-played-courses-empty h3,
.my-want-to-play-empty h3 {
  color: #1e5e3a;
  margin-bottom: 15px;
}

.my-played-courses-login a,
.my-want-to-play-login a {
  color: #1e5e3a;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .course-tracking-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .course-played-btn,
  .course-want-to-play-btn {
    width: 100%;
    justify-content: center;
  }
  
  .played-course-item,
  .want-to-play-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .want-course-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .card-tracking-buttons {
    top: 8px;
    right: 8px;
    gap: 4px;
  }
  
  .card-played-btn,
  .card-want-btn {
    width: 32px;
    height: 32px;
  }
}

/* ===================================
   COURSES BY REGION GRID
   =================================== */
.donald-ross-courses-by-region {
  max-width: 1200px !important;
  margin: 40px auto !important;
  padding: 0 20px !important;
}

.courses-grid {
  display: grid !important;
  gap: 30px !important;
  margin-bottom: 40px !important;
}

.courses-grid.columns-1 { grid-template-columns: repeat(1, 1fr) !important; }
.courses-grid.columns-2 { grid-template-columns: repeat(2, 1fr) !important; }
.courses-grid.columns-3 { grid-template-columns: repeat(3, 1fr) !important; }
.courses-grid.columns-4 { grid-template-columns: repeat(4, 1fr) !important; }
.courses-grid.columns-5 { grid-template-columns: repeat(5, 1fr) !important; }
.courses-grid.columns-6 { grid-template-columns: repeat(6, 1fr) !important; }

.course-grid-card {
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

.course-grid-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.course-grid-card .card-image {
  position: relative !important;
  height: 200px !important;
  overflow: hidden !important;
}

.course-grid-card .card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.course-grid-card .card-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.course-grid-card .card-content {
  padding: 20px !important;
}

.course-grid-card .card-title {
  margin: 0 0 12px 0 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: #1f2937 !important;
}

.course-grid-card .card-location {
  font-size: 14px !important;
  color: #6b7280 !important;
  margin-bottom: 12px !important;
  font-weight: 500 !important;
}

.course-grid-card .card-location i {
  margin-right: 6px !important;
}

.course-grid-card .card-details {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.course-grid-card .card-details .detail-item {
  font-size: 13px !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
  background: #f3f4f6 !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
}

.course-grid-card .card-details .detail-item i {
  margin-right: 4px !important;
}

.course-grid-card a {
  color: inherit !important;
  text-decoration: none !important;
}

.course-grid-card a:hover {
  color: inherit !important;
  text-decoration: none !important;
}

/* Responsive grid */
@media (max-width: 1024px) {
  .courses-grid.columns-4,
  .courses-grid.columns-5,
  .courses-grid.columns-6 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .courses-grid.columns-3,
  .courses-grid.columns-4,
  .courses-grid.columns-5,
  .courses-grid.columns-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .courses-grid {
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  .courses-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 15px !important;
  }
}

/* List view styles */
.courses-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

.course-list-item {
  background: white !important;
  padding: 20px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

.course-list-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.course-list-item a {
  color: inherit !important;
  text-decoration: none !important;
}

.course-list-item h4 {
  margin: 0 0 8px 0 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
}

.course-list-item p {
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 14px !important;
}

/* ===================================
   TOP DONALD ROSS STATES SECTION
   =================================== */
.donald-ross-courses-by-region.top-states {
  max-width: 1400px !important;
  margin: 60px auto !important;
  padding: 0 20px !important;
}

.section-header {
  text-align: center !important;
  margin-bottom: 50px !important;
}

.section-title {
  font-size: 42px !important;
  font-weight: 700 !important;
  color: #1e5e3a !important;
  margin: 0 0 16px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
}

.section-title i {
  font-size: 36px !important;
  color: #2d7a57 !important;
}

.section-subtitle {
  font-size: 18px !important;
  color: #6b7280 !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

/* Top States Grid */
.top-states-grid {
  display: grid !important;
  gap: 30px !important;
  margin-bottom: 50px !important;
}

.top-states-grid.columns-1 { grid-template-columns: repeat(1, 1fr) !important; }
.top-states-grid.columns-2 { grid-template-columns: repeat(2, 1fr) !important; }
.top-states-grid.columns-3 { grid-template-columns: repeat(3, 1fr) !important; }
.top-states-grid.columns-4 { 
  grid-template-columns: repeat(4, 1fr) !important; 
}

/* Mobile overrides for columns-4 specifically */
@media screen and (max-width: 1200px) {
  .top-states-grid.columns-4 { 
    grid-template-columns: repeat(3, 1fr) !important; 
  }
}
@media screen and (max-width: 900px) {
  .top-states-grid.columns-4 { 
    grid-template-columns: repeat(2, 1fr) !important; 
  }
}
@media screen and (max-width: 600px) {
  .top-states-grid.columns-4 { 
    grid-template-columns: repeat(1, 1fr) !important; 
  }
}
.top-states-grid.columns-5 { grid-template-columns: repeat(5, 1fr) !important; }
.top-states-grid.columns-6 { grid-template-columns: repeat(6, 1fr) !important; }

.top-state-card {
  background: white !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden !important;
  transition: all 0.4s ease !important;
  border: 2px solid transparent !important;
  position: relative !important;
}

.top-state-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(30, 94, 58, 0.15) !important;
  border-color: #2d7a57 !important;
}

.top-state-card[data-rank="1"] {
  background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 100%) !important;
  border-color: #f59e0b !important;
}

.top-state-card[data-rank="2"] {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
  border-color: #9ca3af !important;
}

.top-state-card[data-rank="3"] {
  background: linear-gradient(135deg, #fecaca 0%, #fed7d7 100%) !important;
  border-color: #f87171 !important;
}

.state-card-link {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
  height: 100% !important;
  padding: 24px !important;
}

.state-card-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  margin-bottom: 20px !important;
}

.state-rank {
  background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
  color: white !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  box-shadow: 0 4px 12px rgba(30, 94, 58, 0.3) !important;
}

.top-state-card[data-rank="1"] .state-rank {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.top-state-card[data-rank="2"] .state-rank {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%) !important;
}

.top-state-card[data-rank="3"] .state-rank {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%) !important;
}

.course-count-badge {
  text-align: center !important;
}

.count-number {
  display: block !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #1e5e3a !important;
  line-height: 1 !important;
}

.count-label {
  font-size: 12px !important;
  color: #6b7280 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.state-card-content {
  margin-bottom: 24px !important;
}

.state-name {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.2 !important;
}

.state-description {
  color: #6b7280 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.state-card-footer {
  padding-top: 16px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.explore-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #1e5e3a !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
}

.top-state-card:hover .explore-link {
  color: #2d7a57 !important;
  transform: translateX(4px) !important;
}

.explore-link i {
  font-size: 14px !important;
  transition: transform 0.3s ease !important;
}

.top-state-card:hover .explore-link i {
  transform: translateX(4px) !important;
}

/* View All States Button */
.view-all-states {
  text-align: center !important;
  margin-top: 50px !important;
}

.view-all-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: linear-gradient(135deg, #1e5e3a 0%, #2d7a57 100%) !important;
  color: white !important;
  padding: 18px 36px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 8px 25px rgba(30, 94, 58, 0.3) !important;
}

.view-all-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(30, 94, 58, 0.4) !important;
  color: white !important;
  text-decoration: none !important;
}

/* List View for States */
.top-states-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  margin-bottom: 50px !important;
}

.top-state-list-item {
  background: white !important;
  padding: 24px !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  transition: all 0.3s ease !important;
}

.top-state-list-item:hover {
  transform: translateX(8px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.state-list-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: inherit !important;
  text-decoration: none !important;
  flex: 1 !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .top-states-grid.columns-4 { grid-template-columns: repeat(3, 1fr) !important; }
  .top-states-grid.columns-5 { grid-template-columns: repeat(4, 1fr) !important; }
  .top-states-grid.columns-6 { grid-template-columns: repeat(4, 1fr) !important; }
}

@media (max-width: 900px) {
  .section-title {
    font-size: 32px !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .top-states-grid.columns-3,
  .top-states-grid.columns-4,
  .top-states-grid.columns-5,
  .top-states-grid.columns-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .top-states-grid {
    gap: 20px !important;
  }
  
  .state-card-link {
    padding: 20px !important;
  }
  
  .state-name {
    font-size: 20px !important;
  }
  
  .state-description {
    font-size: 14px !important;
  }
}

@media (max-width: 600px) {
  .donald-ross-courses-by-region.top-states {
    padding: 0 16px !important;
  }
  
  .top-states-grid.columns-2,
  .top-states-grid.columns-3,
  .top-states-grid.columns-4,
  .top-states-grid.columns-5,
  .top-states-grid.columns-6 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  
  .section-title {
    font-size: 28px !important;
  }
  
  .section-subtitle {
    font-size: 16px !important;
  }
  
  .state-card-link {
    padding: 16px !important;
  }
  
  .state-name {
    font-size: 18px !important;
  }
  
  .count-number {
    font-size: 24px !important;
  }
  
  .view-all-btn {
    padding: 16px 28px !important;
    font-size: 16px !important;
  }
}

/* ===== SELECTIVE NAVIGATION RESTORATION ===== */

/* Enhanced Navigation Container */
.dre-enhanced-navigation {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(30, 94, 58, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 99999 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 18px 20px !important;
    height: 70px !important;
    box-sizing: border-box !important;
    max-height: 70px !important;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    border-radius: 0 !important;
}

/* Desktop Navigation Links */
.dre-enhanced-navigation .dre-desktop-nav-link {
    color: white !important;
    text-decoration: none !important;
    font-size: 16px !important;
    padding: 8px 16px !important;
    margin: 0 4px !important;
    border-radius: 6px !important;
    transition: background-color 0.2s ease !important;
}

.dre-enhanced-navigation .dre-desktop-nav-link:hover {
    background-color: rgba(255,255,255,0.1) !important;
}

/* Login/Logout Button in Navigation */
.dre-enhanced-navigation .dre-desktop-nav-link[href*="wp-login"],
.dre-enhanced-navigation .dre-desktop-nav-link[href*="wp-admin/profile.php"] {
    border: 2px solid white !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    padding: 8px 16px !important;
}

/* Mobile Hamburger Button */
.dre-hamburger-btn {
    display: none !important;
    background: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    font-size: 18px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
}

/* Mobile Menu */
.dre-mobile-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    flex-direction: column !important;
    background: rgba(0,0,0,0.95) !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    min-width: 200px !important;
    max-width: 280px !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3) !important;
    margin-top: 8px !important;
}

.dre-mobile-menu a {
    display: block !important;
    color: white !important;
    text-decoration: none !important;
    font-family: Inter, sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 12px 16px !important;
    margin: 4px 0 !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
}

.dre-mobile-menu a:hover {
    background: rgba(255,255,255,0.15) !important;
}

/* Responsive Navigation */
@media (max-width: 1100px) {
    .dre-enhanced-navigation .dre-desktop-nav-link {
        display: none !important;
    }
    
    .dre-hamburger-btn {
        display: block !important;
    }
}

/* Hide WordPress admin bar for non-admin users only */
body:not(.logged-in.admin-bar) #wpadminbar {
    display: none !important;
}

/* Show admin bar for admin users */
body.logged-in.admin-bar #wpadminbar {
    display: block !important;
}

/* Reduce body padding to minimize white space - exact navigation height */
body {
    padding-top: 70px !important;
}

/* Admin users: navigation goes below admin bar */
body.admin-bar .dre-enhanced-navigation {
    top: 32px !important;
}

/* Admin users: exact padding to match admin bar + navigation */
body.admin-bar {
    padding-top: 102px !important; /* 32px admin bar + 70px navigation */
}

/* HERO NEGATIVE MARGIN - only apply to home page, not course detail pages */
body.home .wp-block-group:not(.dre-enhanced-navigation):first-of-type,
body.home .alignfull:not(.dre-enhanced-navigation):first-of-type,
body.home .has-background:not(.dre-enhanced-navigation):first-of-type {
    margin-top: -70px !important;
    padding-top: 0 !important;
}

/* Admin users - home page only */
body.home.admin-bar .wp-block-group:not(.dre-enhanced-navigation):first-of-type,
body.home.admin-bar .alignfull:not(.dre-enhanced-navigation):first-of-type,
body.home.admin-bar .has-background:not(.dre-enhanced-navigation):first-of-type {
    margin-top: -102px !important;
}

/* COURSE DETAIL PAGE SPECIFIC STYLES */
/* Ensure proper spacing on course detail pages */
body.single-gd_place {
    /* Keep default padding without negative margins */
}

/* Ensure course detail content is properly spaced from navigation */
body.single-gd_place .entry-content > *:first-child,
body.single-gd_place .geodir-single-content > *:first-child,
body.single-gd_place main > *:first-child {
    margin-top: 20px !important; /* Add spacing from navigation */
}

/* Fix overlapping course title and buttons */
body.single-gd_place .wp-block-heading:first-of-type,
body.single-gd_place h1:first-of-type {
    margin-top: 20px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Ensure course details table doesn't overlap description */
body.single-gd_place .donald-ross-course-details {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    clear: both !important;
}

/* Ensure tracking buttons are visible */
body.single-gd_place .dre-course-tracking-buttons {
    position: relative !important;
    z-index: 10 !important;
    margin-top: 10px !important;
}

/* CUSTOM FOOTER STYLES */
.dre-custom-footer {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 40px 20px !important;
    text-align: center !important;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif !important;
    border-top: 1px solid #333 !important;
    margin-top: 40px !important;
}

.dre-custom-footer p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.dre-custom-footer a {
    color: #4CAF50 !important;
    text-decoration: none !important;
}

.dre-custom-footer a:hover {
    text-decoration: underline !important;
}

/* Hide only the WordPress theme header content, not our navigation */
.wp-block-template-part[data-area="header"] {
    display: none !important;
}

/* Additional specific header hiding */
.wp-site-blocks > .alignwide.has-base-background-color,
.wp-block-group.alignwide.has-base-background-color {
    display: none !important;
}

