/*
Theme Name: Azure Boat Directory
Theme URI: https://example.com
Author: Jacques D. L. Rima
Author URI: https://azuredigitalogy.com
Description: A simple starter theme for WordPress.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: azure-boat-directory
*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1f1f1f;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

#preloader .spinner {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

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

/* Preloader styles */

.site-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-logo:hover {
  color: #005fa3;
}

.site-logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
  animation: float 2s ease-in-out infinite;
}

.logo-text {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 1px;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.hero-slideshow {
  position: relative;
  height: 500px; /* or your preferred height */
  background: url('your-slideshow-image.jpg') center center / cover no-repeat;
}

.search-bar-container {
  z-index: 10;
}

.search-bar {
  background-color: white;
  border: 3px solid #ffb900; /* Yellow border like the image */
  border-radius: 12px;
  max-width: 1200px;
  margin: auto;
}

.search-bar input {
  min-width: 200px;
}

@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
  }

  .search-bar input,
  .search-bar button {
    width: 100%;
  }
}
/* CREATE HOME PAGE START */
/* Helper to enforce min-width on flex-grow elements */
.min-w-200px {
  min-width: 200px;
}

/* Ensure inputs shrink properly in flex containers */
input.form-control {
  min-width: 0;
}
/* CREATE HOME PAGE END */
/* CREATE LISTING PAGE START */
.category-select-wrapper {
    border: 2px dashed #ffc107;
    border-radius: 1rem;
    padding: 1rem;
    background-color: #fffdf3;
    transition: border-color 0.3s;
  }

  .category-select-wrapper:hover {
    border-color: #ffca2c;
  }

  .category-instruction {
    font-size: 0.85rem;
    color: #6c757d;
  }

  .form-select-pill {
    appearance: none;
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    border: 1px solid #ffc107;
    background-color: #fff8e1;
    transition: all 0.2s;
  }

  .form-select-pill:focus {
    border-color: #ffca2c;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
  }

  .pill-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #fd7e14;
  }

  select[multiple] option {
    padding: 8px;
  }
.select2-container--default .select2-selection--multiple {
  min-height: auto;
  max-height: 120px;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--bs-border-color, #ced4da);
  border-radius: 0.5rem;
  background-color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.select2-container .select2-search--inline .select2-search__field {
    height: 20px!important;
}    
.select2-selection__choice {
  background-color: var(--bs-primary, #0d6efd) !important;
  color: #fff !important;
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.select2-selection__choice__remove {
  color: #fff !important;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}

.select2-selection__choice__remove:hover {
  color: var(--bs-warning, #ffc107) !important;
}

/* Custom Card */
.card-custom {
  box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.1);
  border: none;
  border-radius: 1rem;
  transition: transform 0.3s;
}
.card-custom:hover {
  transform: translateY(-3px);
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--bs-primary);
  padding-bottom: 0.5rem;
}

.form-section {
  background-color: var(--bs-light);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.contact-group {
  background-color: #fff;
  border-left: 5px solid var(--bs-primary);
  padding: 1rem;
  border-radius: 0.5rem;
}

.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

textarea.form-control {
  resize: vertical;
}

.required::after {
  content: '*';
  color: red;
  margin-left: 0.25rem;
}

input[readonly]#state, input[readonly]#postal_code {
  background-color: #f1f1f1;
  cursor: not-allowed;
  border: 1px solid var(--bs-primary);
}

#loading-overlay {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

#loading-overlay.fadeIn {
  opacity: 1;
}

#loading-overlay.d-none {
  opacity: 0;
}

/* CREATE LISTING PAGE END */

/* HOME PAGE START */
    /* HOME PAGE - TOP DIRECTORY START */
    .service-icon {
      background-color: var(--bs-warning);
      opacity: 0.6;
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, background 0.3s ease;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }
    .service-icon a,
      .service-icon a:hover {
        text-decoration: none;
        color: inherit;
      }

    .service-icon:hover {
      transform: scale(1.08);
      background: #fffbe6;
    }

    .service-icon img {
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
    }

    .service-icon span {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: #333;
    }
    /* HOME PAGE - TOP DIRECTORY END */
    
    /* HOME PAGE - TOP ARTICLE START */    
    .boat-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;

    }
    .boat-card:hover {
      transform: scale(1.01);
    }
    
    .card-body h6 {
        font-size: 1rem;
    }
    .boat-img {
      height: 100%;
      object-fit: cover;
    }
    .tag {
      font-size: 0.7rem;
      background: #0077b6;
      color: white;
      padding: 2px 8px;
      border-radius: 12px;
      margin-right: 5px;
    }
    .rating i {
      color: #ffb703;
    }
    .book-btn {
      background-color: var(--bs-warning);
      border: none;
    }
    .book-btn:hover {
        background-color: var(--bs-warning);
        opacity: 0.6;
        transition: opacity 0.5s ease;
    }
    .fav-btn {
        background: none;
        border: none;
    }

    .fav-btn.active i {
      font-weight: bold;
    }

    .fav-btn i.fas.fa-heart {
      color: red;
    }
    .tag-badge {
      background-color: #e0f0ff;
      color: #023e8a;
      font-size: 0.75rem;
      padding: 0.4em 0.7em;
      display: inline-flex;
      align-items: center;
    }
    .card-body p.small {
      line-height: 1.4;
      color: #555;
    }
    #boat-counter {
      font-size: 0.95rem;
      font-weight: 500;
    }
    /* HOME PAGE - TOP ARTICLE START */
/* HOME PAGE END */

/* LISTING PAGE START */

    .header-banner {

      color: white;
      padding: 100px 30px;
      position: relative;
    }
    .header-banner::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }
    .header-banner > * {
      position: relative;
      z-index: 2;
    }

    .carousel-caption {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      padding: 10px 20px;
    }

    .map-wrapper iframe {
      border-radius: 10px;
    }

    .contact-form label {
      font-weight: bold;
    }

    .key-person {
      text-align: center;
    }

    .key-person img {
      border-radius: 50%;
      max-width: 150px;
      margin-bottom: 15px;
    }

    .swiper.mySwiper {
      height: auto;
    }

    .swiper.mySwiper .swiper-slide {
      width: auto;
      height: 100px;
      opacity: 0.4;
      cursor: pointer;
    }

    .swiper.mySwiper .swiper-slide-thumb-active {
      opacity: 1;
    }

    .swiper.mySwiper .swiper-wrapper {
      flex-direction: row !important;
    }

    .swiper-slide img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    
    .category-pill:hover {
        background-color: #ffc107 !important;
        color: #212529 !important;
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    }
    .category-pill {
      transition: all 0.3s ease;
    }
    
    .category-section {
    position: relative;
    overflow: hidden;
  }

  .category-pill {
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .category-pill:hover {
    background-color: #ffc107 !important;
    color: #212529 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
  }
  
  .category-pill:hover i {
    color: #fff !important;
  }

  /* Simple fade animations */
  .animate-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .delay-1 {
    animation-delay: 0.3s;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
    @media (max-width: 767.98px) {
    /* Smaller height for main images on small devices */
    .gallery-top .swiper-slide img {
      height: 250px !important;
    }
    /* Thumbnails smaller width */
    .gallery-thumbs .swiper-slide {
      width: 70px !important;
    }
  }
  @media (max-width: 480px) {
    .gallery-top .swiper-slide img {
      height: 180px !important;
    }
    .gallery-thumbs .swiper-slide {
      width: 60px !important;
    }
  }

/* LISTING PAGE END */

   /* Sticky Navbar */
nav.navbar {
  position: sticky;
  top: 0;
  z-index: 1040;
}

/* Sticky Progress Bar */
.progress-steps {
  position: sticky;
  top: 70px; /* adjust based on navbar height */
  z-index: 1030;
  background: #fff;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Scrollable Progress Content */
/*.progress-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  min-width: 600px;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 1rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  scroll-snap-type: x mandatory;
}*/

/* Progress Step */
.step {
  flex: 1 0 120px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  scroll-snap-align: center;
  z-index: 2;
  cursor: pointer;
}

.step .icon {
  width: 48px;
  height: 48px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step .label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6c757d;
}

/* Step states */
.step.active .icon {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.step.completed .icon {
  background: var(--bs-warning);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.4);
}

/* Progress bar background & fill */
.progress-bar-bg {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  height: 4px;
  background: #dee2e6;
  z-index: 1;
  border-radius: 2px;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #0d6efd, var(--bs-warning));
  border-radius: 2px;
  transition: width 0.4s ease-in-out;
}

/* Section transitions */
.step-form-section {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.step-form-section.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Group styling */
.branch-group,
.contact-group {
  background-color: #f9f9f9;
  border-left: 5px solid #007bff;
}

/* Form styling */
.step-form-section .card {
  padding: 1rem !important;
  margin-bottom: 1rem;
}

.step-form-section .form-label {
  margin-bottom: 0.25rem;
}

.step-form-section .form-control,
.step-form-section .input-group {
  margin-bottom: 0.5rem;
}

.input-group .btn {
  height: 100%;
  display: flex;
  align-items: center;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Sticky navbar */
nav.navbar {
  position: sticky;
  top: 0;
  z-index: 1040;
}

/* Sticky wrapper just under the navbar */
.progress-wrapper {
  position: sticky;
  top: 45px; /* match navbar height */
  z-index: 1030;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 1.5rem;
  min-width: 600px;
  background: #f8f9fa;
  border-radius: 1rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

/* Prevent parent from being sticky too */
.progress-steps {
  padding: 1rem 0;
  background: #fff;
}

 /* Overlay behind the toast for modal effect */
  .toast-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
  }

  /* Toast centered horizontally and vertically */
  .toast-validation {
    outline: 2px dashed red;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    background: #fff5f5;
    border: 1.5px solid #f56565;
    color: #c53030;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 24px 32px;
    max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
    font-weight: 600;
    z-index: 9999;
    opacity:  1 !important;
    animation: fadeIn 0.35s forwards;
    font-size: 1rem;
  }
  .toast-validation ul {
    margin: 12px 0 0 20px;
    padding: 0;
    list-style-type: disc;
  }
  .toast-validation button.btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    color: #c53030;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .toast-validation button.btn-close:hover {
    color: #9b2c2c;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  @keyframes fadeOut {
    to {
      opacity: 0;
    }
  }
  
  .stat-disabled {
  opacity: 0.5;
  pointer-events: none; /* Optional: prevent clicks */
  background-color: #f8f9fa !important;
}

/* CREATE DASHBOARD PAGE START */

 #azure-boat-directory-dashboard h2, h5 {
    font-weight: 600;
  }
   #azure-boat-directory-dashboard .card {
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
   #azure-boat-directory-dashboard .card:hover:not(.disabled) {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
   #azure-boat-directory-dashboard .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #6c757d;
    transition: background-color 0.15s ease, color 0.15s ease;
  }
   #azure-boat-directory-dashboard .card:hover:not(.disabled) .icon-circle {
    background-color: #ffc107; /* warning color */
    color: #212529;
  }
  /* Warning button style */
   #azure-boat-directory-dashboard .btn-warning-accent {
    background-color: #ffc107;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    color: #212529;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
   #azure-boat-directory-dashboard .btn-warning-accent:hover {
    background-color: #e0a800;
    color: #212529;
    text-decoration: none;
  }
  /* Disabled cards */
   #azure-boat-directory-dashboard .card.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
  }
   #azure-boat-directory-dashboard .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
  }
   #azure-boat-directory-dashboard .welcome-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
   #azure-boat-directory-dashboard .welcome-header img.avatar {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    object-fit: cover;
  }
   #azure-boat-directory-dashboard .btn-logout {
    color: #6c757d;
    font-weight: 600;
    border: 1px solid transparent;
    background: transparent;
    transition: color 0.3s ease;
  }
   #azure-boat-directory-dashboard .btn-logout:hover {
    color: #ffc107;
    text-decoration: none;
  }
  
    .welcome-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    gap: 1rem;
  }

  .welcome-header .user-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 250px;
  }

  .welcome-header .avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #e3e6ea;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  .welcome-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
  }

  .welcome-header p {
    margin: 0;
    font-size: 0.95rem;
    color: #6c757d;
  }

  .welcome-header .btn-logout {
    background-color: #ff4b5c;
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
  }

  .welcome-header .btn-logout:hover {
    background-color: #e84150;
    color: #fff;
  }

  @media (max-width: 576px) {
    .welcome-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .welcome-header .btn-logout {
      align-self: stretch;
      justify-content: center;
      width: 100%;
    }
  }
  
    .stat-disabled {
    pointer-events: none;
    opacity: 0.5;
  }

  .card.stat-clickable {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .card.stat-clickable:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    cursor: pointer;
  }

  .icon-circle i {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.25rem;
    font-weight: bold;
  }

    .table thead th {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #f8f9fa;
  }

  .table td {
    vertical-align: middle;
    font-size: 0.95rem;
  }

  .action-buttons .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .badge-success {
    background-color: #198754;
  }

  .badge-secondary {
    background-color: #6c757d;
  }

 .pagination-wrapper {
  margin-top: 2rem;
}

.pagination {
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-item .page-link {
  border: none;
  border-radius: 1.5rem;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  font-weight: 500;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-item .page-link:hover {
  background-color: #0d6efd;
  color: #fff;
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #ffc107, #ffb347);
  color: #212529;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.pagination .page-link {
  border: none;
  border-radius: 50px;
  color: #0d6efd;
  background-color: #f8f9fa;
  margin: 0 2px;
  padding: 0.5rem 0.9rem;
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pagination .page-link:hover {
  background-color: #0d6efd;
  color: white;
}

.pagination .active .page-link {
  background: linear-gradient(135deg, #ffc107, #ffb347);
  color: #212529;
  font-weight: bold;
}

    .dashboard-header {
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(var(--bs-warning-rgb), 1), rgba(var(--bs-warning-rgb), 0.85));
    color: #212529;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
  }

  .dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #212529;
  }

  .dashboard-header p {
    font-size: 1rem;
    color: #5c5c5c;
  }

  .dashboard-header .btn-add-listing {
    background-color: #fff;
    color: rgba(var(--bs-warning-rgb), 1);
    border: none;
    border-radius: 5px;
    padding: 0.6rem 1.3rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .dashboard-header .btn-add-listing:hover {
    background-color: rgba(var(--bs-warning-rgb), 1);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }

  .breadcrumb-wrapper {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    display: inline-block;
    margin-top: 1rem;
  }

  .breadcrumb {
    margin-bottom: 0;
    font-size: 0.875rem;
  }

  .breadcrumb-item a {
    text-decoration: none;
    color: #6c757d;
  }

  .breadcrumb-item.active {
    color: #343a40;
    font-weight: 600;
  }

  .action-buttons a {
    min-width: 36px;
    text-align: center;
  }

  .table-hover tbody tr:hover {
    background-color: #f8f9fa;
  }

  .btn-add-listing {
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
/* CREATE DASHBOARD PAGE END */


