.bdm-login-form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bdm-login-form > div{
  width: 100%;
}
.bdm-form {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: Arial, sans-serif;
}

.bdm-form-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 20px;
}

.bdm-field {
  flex: 0 0 48%;
  margin-bottom: 15px;
}
.bdm-field label {
  color: #072F49;
  font-weight: 600;
}

.bdm-field input{
  width: 100%;
  padding: 10px;
  border: 1px solid #D2D6DA;
  border-radius: 0px;
  font-size: 14px;
  color: #072F49;
  outline: none;
  margin-top: 10px;
}

.bdm-submit {
  background-color: #4cb4a6;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  width: 100%;
  border-radius: 3px;
  transition: background 0.3s ease;
  max-width: 400px;
  margin: auto;
}

.bdm-submit:hover {
  background-color: #3fa193;
}
.bdm-table {
  width: 100%;
  border-collapse: separate;
    border-spacing: 5px 5px;
  margin-top: 30px;
  font-size: 14px;
}

.bdm-table th,
.bdm-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.bdm-table th {
  background-color: #062944;
  color: white;
}
.bdm-table th:last-child, .bdm-table td:last-child {
  background-color: transparent ;
  border: 0px solid transparent;
}

.bdm-approve {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 3px;
  cursor: pointer;
}

.bdm-decline {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 3px;
  cursor: pointer;
}

.bdm-archive {
  background-color: #ccc;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 3px;
  /* cursor: not-allowed; */
}

.bdm-export {
  background-color: #062944;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
}

.bdm-logout {
  display: inline-block;
  padding: 10px 20px;
  background: #4cb4a6;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
}
.bdm-flex{
      display: flex;
    justify-content: center;
    align-items: center;
}
 .status-approved { 
    background-color: #d4edda; 
    color: #155724; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}
.status-declined { 
    background-color: #f8d7da; 
    color: #721c24; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}
.status-pending { 
    background-color: #fff3cd; 
    color: #856404; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}
.status-archived { 
    background-color: #e2e3e5; 
    color: #495057; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}
.archived-row { 
    opacity: 0.6; 
    background-color: #f8f9fa; 
}
.archived-text { 
    color: #6c757d; 
    font-style: italic; 
}
.actions-container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.bdm-approve:disabled,
.bdm-decline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Filter styles */
.bdm-header {
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
}

.bdm-filters {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.filter-label {
    display: none; /* Hide the FILTERS label */
}

.filter-btn {
    padding: 8px 10px;
    border: none;
    background-color: transparent;
    color: #666666;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    margin-right: 10px;
}

.filter-btn:hover {
    color: #4FAD97;
}

.filter-btn:focus {
    outline-width: 0px;
    outline-style: none;
}

/* .filter-btn.active {
    color: #333333;
    font-weight: 600;
} */

/* Add colored dots before each filter button */
.filter-btn:before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #D2D6DA;
    vertical-align: middle;
}

/* All filter - no dot */
.filter-btn.active:before {
  background-color: #4FAD97;
}


/* Remove the last margin */
.filter-btn:last-child {
    margin-right: 0;
}

/* Status indicator styles */
.status-pending {
    background-color: #fff3cd;
    color: #856404;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-declined {
    background-color: #f8d7da;
    color: #721c24;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-archived {
    background-color: #e2e3e5;
    color: #495057;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Table row visibility for filters */
.bdm-table tbody tr {
    transition: opacity 0.3s ease;
}

.bdm-table tbody tr:not([style*="display: none"]) {
    opacity: 1;
}

/* Card Grid  */
.bdm-card {
  width: 100%;
  max-width: 440px;
  background: #e6f4f3;
  border: 2px solid #50AC97;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bdm-card-header {
  position: relative;
}

.bdm-card-header img.bdm-bg {
  width: 100%;
  height: 160px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.bdm-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.bdm-badge > span {
  position: absolute;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bdm-badge p {
  margin: 0px;
  background: white;
  padding: 3px 5px 3px 10px;
  margin-left: 25px;
  color: #072F49;
  font-style: italic;
}

.bdm-badge svg {
  margin-left: 3px;
}

.bdm-badge img {
  height: 20px;
}

.bdm-heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.bdm-heart-icon:hover {
  color: #50AC97;
  cursor: pointer;
}

.bdm-card-content {
  padding: 0px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.bdm-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.bdm-logo {
  width: 80px;
  height: 80px !important;
  position: absolute;
  top: -50px;
  left: 0;
  object-fit: cover;
  object-position: center;

}

.bdm-category {
  border: 1px solid #072F49;
  border-top: 0px;
  padding: 5px 25px;
  font-weight: bold;
  color: #50AC97;
}

.bdm-title {
  font-weight: bold;
  margin-bottom: 6px;
  color: #083843;
}

.bdm-description {
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
}

.bdm-btn {
  background-color: #fff;
  color: #50AC97;
  padding: 8px 16px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
  margin: auto;
  border: none;
  border-radius: 0;
}
    .bdm-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
  gap: 20px;
  padding: 40px 20px;
  justify-items: flex-start;
}
.bdm-profile-container {
        width: 100%;
    }

    .bdm-search-filters {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
        max-width: 700px;
        margin: auto;
    }

    .bdm-search-form {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        align-items: end;
    }

    .bdm-search-field {
        flex: 1;
        min-width: 200px;
        position: relative;
    }
    /* .bdm-search-field,
    .bdm-category-field {
        flex: 1;
        min-width: 200px;
    } */
    .bdm-search-field >svg{
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);

    }
    .bdm-search-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #072F49;
        /* border-radius: 6px; */
        font-size: 16px;
        color: #072F49;
        background: transparent;
    }
    
    .bdm-category-select {
        padding: 12px 15px;
        color: #fff;
        border: 1px solid #50AC97;
        /* border-radius: 6px; */
        font-size: 16px;
        background: #50AC97;
    }

    .bdm-search-input:focus,
    .bdm-category-select:focus {
        outline: none;
        border-color: #50AC97;
        box-shadow: 0 0 0 2px rgba(80, 172, 151, 0.1);
    }

    .bdm-search-buttons {
        display: flex;
        gap: 10px;
    }

    .bdm-search-btn,
    .bdm-clear-btn {
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .bdm-search-btn {
        background: #50AC97;
        color: white;
        border: none;
    }

    .bdm-search-btn:hover {
        background: #45967e;
    }

    .bdm-clear-btn {
        background: #6c757d;
        color: white;
        border: 1px solid #6c757d;
    }

    .bdm-clear-btn:hover {
        background: #5a6268;
        text-decoration: none;
    }

    .bdm-search-results-info {
        margin-bottom: 20px;
        padding: 10px 0;
        color: #666;
        font-style: italic;
    }

    .bdm-no-results {
        text-align: center;
        padding: 40px;
        background: #f8f9fa;
        border-radius: 8px;
        color: #666;
    }

    .bdm-no-results p {
        margin: 10px 0;
    }

    .bdm-no-results a {
        color: #50AC97;
        text-decoration: none;
    }

    .bdm-no-results a:hover {
        text-decoration: underline;
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .bdm-search-form {
            flex-direction: column;
        }
        
        .bdm-search-field,
        .bdm-category-field {
            min-width: 100%;
        }
        
        .bdm-search-buttons {
            justify-content: center;
        }
    }

/* Responsive design for filters */
@media (max-width: 768px) {
    .bdm-filters {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
  .bdm-card-grid {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }
}
.bmdv-container {
      display: flex;
      flex-direction: column;
    }
    
    /* bmdv-Sidebar Styles */
    .bmdv-sidebar {
      width: 100%;
      padding: 20px;
      order: 2;
    }
    
    .bmdv-sidebar h3 {
      color: #2c5f3f;
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: bold;
    }
    
    .search-box {
      width: 100%;
      padding: 8px 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      margin-bottom: 20px;
      font-size: 14px;
      background: transparent;
    }
    
    .bmdv-menu-item {
      display: block;
      padding: 12px 0;
      color: #2c5f3f;
      text-decoration: none;
      border-bottom: 1px solid #f0f0f0;
      font-size: 14px;
      position: relative;
    }
    
    /* .bmdv-menu-item:first-of-type {
      background: #50AC97;
      color: white;
      padding: 12px 15px;
      margin: 0 -20px 10px -20px;
      border-radius: 4px;
    } */
    
    .business_listing::after {
      content: '>';
      position: absolute;
      right: 0;
      color: #072F49;
    }
    
    .bmdv-menu-item:first-of-type::after {
      color: #072F49;
    }
    
    /* Main Content */
    .bmdv-main-content {
      flex: 1;
      padding: 20px;
      order: 1;
      width: 100%;
      width: -webkit-fill-available;
      width: -moz-available;
      width: fill-available;
      max-width: 100%;
    }
    
    /* Original BMDV Card Styles */
    .bmdv-card {
      background: #e6f4f3;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin: 0 auto;
    }
    .bmdv-card-header {
      position: relative;
    }
    .bmdv-card-header img.bmdv-bg {
      width: 100%;
      height: 230px;
      display: block;
      object-fit: cover;
      object-position: center;
    }
    .bmdv-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: bold;
    }
    .bmdv-badge > span{
      position: absolute;
      height: 30px;
      width: 30px;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .bmdv-badge p{
      margin: 0px ;
      background: white;
      padding: 3px 5px 3px 10px;
      margin-left: 25px;
      color: #072F49;
      font-style: italic;
    }
    .bmdv-badge svg{
      margin-left: 3px;
    }
    .bmdv-badge img {
      height: 20px;
    }
    .bmdv-heart-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 24px;
      height: 24px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }
    .bmdv-heart-icon:hover {
      color: #50AC97;
      cursor: pointer;
    }
    .bmdv-card-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
    .bmdv-row {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 20px;
      position: relative;
      width: 100%;
    }
    .bmdv-logo {
      width: 80px;
      height: 80px;
      position: absolute;
      top: -50px;
    }
    .bmdv-category {
      border: 1px solid #50AC97;
      padding: 5px 25px;
      font-weight: bold;
      color: #50AC97;
      font-size: 14px;
      margin-left: 100px;
    }
    .bmdv-title {
      font-weight: bold;
      margin-bottom: 6px;
      color: #083843;
      font-size: 18px;
    }
    .bmdv-description {
      font-size: 14px;
      color: #444;
      margin-bottom: 14px;
    }
    .bmdv-btn {
      background-color: #fff;
      color: #50AC97;
      padding: 8px 16px;
      text-align: center;
      border-radius: 4px;
      display: inline-block;
      font-weight: bold;
      margin: auto;
      border: none;
      border-radius: 0;
    }
     .bmdv-contact-section {
            background: #e6f4f3;
            padding: 30px 0;
            border-top: 1px solid #072F49;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            align-items: flex-start;
            width: 100%;
        }
        .bmdv-contact-info-container{
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: flex-start;
          gap: 20px;
        }

        .bmdv-contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            color: #072F49;
        }

        .bmdv-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            min-width: 190px;
            flex: 1;
        }

        .bmdv-info-item svg {
            flex-shrink: 0;
        }

        .bmdv-social-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .bmdv-social-icons a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .bmdv-social-icons a:hover {
            background: #50AC97;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .bmdv-social-icons a svg {
            transition: all 0.3s ease;
        }

        .bmdv-social-icons a:hover svg path {
            fill: white;
        }

        .bmdv-social-icons a:hover svg {
            transform: scale(1.1);
        }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .bmdv-container {
        flex-direction: row;
      }
      
      .bmdv-sidebar {
        width: 250px;
        order: 1;
      }
      
      .bmdv-main-content {
        order: 2;
      }
      
      .bmdv-card {
        width: 100%;
      }
    }
    
    @media (max-width: 600px) {
      .bmdv-card-header img.bmdv-bg {
        height: 180px;
      }
      
      .bmdv-logo {
        width: 60px;
        height: 60px;
        top: -40px;
      }
      
      .bmdv-title {
        font-size: 16px;
      }
      
      .bmdv-description {
        font-size: 13px;
      }
      
      .bmdv-contact-info {
        flex-direction: column;
        gap: 15px;
      }
      
      .bmdv-info-item {
        width: 100%;
      }
      
      .bmdv-social-icons {
        justify-content: center;
        width: 100%;
      }
    }
    .bmdv-container {
      display: flex;
      flex-direction: column;
    }
    
    /* bmdv-Sidebar Styles */
    .bmdv-sidebar {
      width: 100%;
      padding: 20px;
      order: 2;
    }
    
    .bmdv-sidebar h3 {
      color: #2c5f3f;
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: bold;
    }
    
    .search-box {
      width: 100%;
      padding: 8px 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      margin-bottom: 20px;
      font-size: 14px;
    }
    
    .bmdv-menu-item {
      display: block;
      padding: 12px 0;
      color: #2c5f3f;
      text-decoration: none;
      border-bottom: 1px solid #f0f0f0;
      font-size: 14px;
      position: relative;
    }
    
    .bmdv-menu-item:first-of-type, .bmdv-menu-item:hover {
      background: #50AC97;
      color: white;
      padding: 12px 15px;
      margin: 0 -20px 10px -20px;
      border-radius: 4px;
    }
    .bmdv-menu-item span{
      margin: 0 20px;
    }
    
    .bmdv-menu-item span::after {
      content: '>';
      position: absolute;
      right: 20px;
      color: #072F49;
    }
    
    .bmdv-menu-item span:first-of-type::after{
      color: #fff;
    }
    
    .bmdv-menu-item:hover::after {
      color: #fff;      
      right: 20px;
    }
    
    /* Main Content */
    .bmdv-main-content {
      flex: 1;
      padding: 20px;
      order: 1;
      width: 100%;
      width: -webkit-fill-available;
      width: -moz-available;
      width: fill-available;
      max-width: 100%;
    }
    
    /* Original BMDV Card Styles */
    .bmdv-card {
      background: #e6f4f3;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin: 0 auto;
    }
    .bmdv-card-header {
      position: relative;
    }
    .bmdv-card-header img.bmdv-bg {
      width: 100%;
      height: 230px;
      display: block;
      object-fit: cover;
      object-position: center;
    }
    .bmdv-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: bold;
    }
    .bmdv-badge > span{
      position: absolute;
      height: 30px;
      width: 30px;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .bmdv-badge p{
      margin: 0px ;
      background: white;
      padding: 3px 5px 3px 10px;
      margin-left: 25px;
      color: #072F49;
      font-style: italic;
    }
    .bmdv-badge svg{
      margin-left: 3px;
    }
    .bmdv-badge img {
      height: 20px;
    }
    .bmdv-heart-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 24px;
      height: 24px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }
    .bmdv-heart-icon:hover {
      color: #50AC97;
      cursor: pointer;
    }
    .bmdv-card-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
    .bmdv-row {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 20px;
      position: relative;
      width: 100%;
    }
    .bmdv-logo {
      width: 80px;
      height: 80px;
      position: absolute;
      top: -50px;
    }
    .bmdv-category {
      border: 1px solid #50AC97;
      padding: 5px 25px;
      font-weight: bold;
      color: #50AC97;
      font-size: 14px;
      margin-left: 100px;
    }
    .bmdv-title {
      font-weight: bold;
      margin-bottom: 6px;
      color: #083843;
      font-size: 18px;
    }
    .bmdv-description {
      font-size: 14px;
      color: #444;
      margin-bottom: 14px;
    }
    .bmdv-btn {
      background-color: #fff;
      color: #50AC97;
      padding: 8px 16px;
      text-align: center;
      border-radius: 4px;
      display: inline-block;
      font-weight: bold;
      margin: auto;
      border: none;
      border-radius: 0;
    }
     .bmdv-contact-section {
            background: #e6f4f3;
            padding: 30px 0;
            border-top: 1px solid #072F49;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            align-items: flex-start;
            width: 100%;
        }
        .bmdv-contact-info-container{
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: flex-start;
          gap: 20px;
        }

        .bmdv-contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            color: #072F49;
        }

        .bmdv-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            min-width: 190px;
            flex: 1;
        }

        .bmdv-info-item svg {
            flex-shrink: 0;
        }

        .bmdv-social-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .bmdv-social-icons a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .bmdv-social-icons a:hover {
            background: #50AC97;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .bmdv-social-icons a svg {
            transition: all 0.3s ease;
        }

        .bmdv-social-icons a:hover svg path {
            fill: white;
        }

        .bmdv-social-icons a:hover svg {
            transform: scale(1.1);
        }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .bmdv-container {
        flex-direction: row;
      }
      
      .bmdv-sidebar {
        width: 250px;
        order: 1;
      }
      
      .bmdv-main-content {
        order: 2;
      }
      
      .bmdv-card {
        width: 100%;
      }
    }
    
    @media (max-width: 600px) {
      .bmdv-card-header img.bmdv-bg {
        height: 180px;
      }
      
      .bmdv-logo {
        width: 60px;
        height: 60px;
        top: -40px;
      }
      
      .bmdv-title {
        font-size: 16px;
      }
      
      .bmdv-description {
        font-size: 13px;
      }
      
      .bmdv-contact-info {
        flex-direction: column;
        gap: 15px;
      }
      
      .bmdv-info-item {
        width: 100%;
      }
      
      .bmdv-social-icons {
        justify-content: center;
        width: 100%;
      }
    }
    
    @media (max-width: 400px) {
      .bmdv-card-header img.bmdv-bg {
        height: 150px;
      }
      
      .bmdv-badge p {
        font-size: 9px;
      }
      
      .bmdv-category {
        padding: 5px 15px;
        font-size: 12px;
      }
    }
    @media (max-width: 400px) {
      .bmdv-card-header img.bmdv-bg {
        height: 150px;
      }
      
      .bmdv-badge p {
        font-size: 9px;
      }
      
      .bmdv-category {
        padding: 5px 15px;
        font-size: 12px;
      }
    }

.bdm-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.bdm-table thead {
  background-color: #f1f5f9;
  color: #333;
}

.bdm-table th, .bdm-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
}

.bdm-table tbody tr:hover {
  background-color: #f9fbfd;
}

.bdm-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}

.bdm-table td:last-child,
.bdm-table th:last-child {
  text-align: center;
}

.status-approved {
  color: #15803d;
  font-weight: bold;
}

.status-declined {
  color: #dc2626;
  font-weight: bold;
}

.status-pending {
  color: #f59e0b;
  font-weight: bold;
}

.status-archived {
  color: #6b7280;
  font-weight: bold;
}

/* Responsive Table */
@media screen and (max-width: 768px) {
  .bdm-table, .bdm-table thead, .bdm-table tbody, .bdm-table th, .bdm-table td, .bdm-table tr {
    display: block;
  }

  .bdm-table thead {
    display: none;
  }

  .bdm-table tr {
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  }

  .bdm-table td {
    padding: 10px 15px;
    text-align: right;
    position: relative;
    border: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .bdm-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
    text-align: left;
    color: #555;
  }
}

  