* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.primary-clr{
  color: #2679CF;
}
.fs-12
{
    font-size: 12px !important;
}
.fs-14
{
    font-size: 14px !important;
}
.fs-16
{
    font-size: 16px !important;
}
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 70px;
    background: linear-gradient(180deg, #2679CF 0%, #43C7E2 100%);
    transition: width 0.35s ease, transform 0.35s ease;
    z-index: 1000;
    overflow: hidden;
  }
  
.admin-sidebar.expanded {
  width: 240px;
}

.admin-sidebar-toggle {
    position: fixed;
    top: 15px;
    left: 0px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: none;
    border-radius: 40%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: left 0.35s ease, transform 0.35s ease;
  }
  
.admin-sidebar-toggle i {
  transition: transform 0.3s ease;
}

.admin-sidebar.expanded ~ .admin-sidebar-toggle i,
.admin-sidebar.show ~ .admin-sidebar-toggle i {
  transform: rotate(180deg);
}

.admin-sidebar-menu {
    margin-top: 80px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
.admin-menu-item {
  position: relative;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.admin-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.admin-menu-item i,
  .admin-menu-item .admin-menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
  }
  
.admin-menu-item .admin-menu-icon {
  object-fit: contain;
}

.admin-menu-icon-normal,
.admin-menu-icon-active {
  width: 20px;
  height: 20px;
}

.admin-menu-icon-active {
  display: none !important;
}

.admin-menu-icon-normal {
  display: block !important;
}

.admin-menu-item.active .admin-menu-icon-active {
  display: block !important;
}

.admin-menu-item.active .admin-menu-icon-normal {
  display: none !important;
}
  
  .admin-menu-item span {
    display: none;
    white-space: nowrap;
    font-weight: 500;
  }
  
  .admin-sidebar.expanded .admin-menu-item {
    justify-content: flex-start;
    padding-left: 14px;
  }
  
.admin-sidebar.expanded .admin-menu-item span {
  display: inline;
}

.admin-menu-item.active {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.admin-header {
    position: fixed;
    top: 0;
    left: 70px;
    right: 0;
    height: 60px;
    background-color: #e8f4fd;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    z-index: 100;
    transition: left 0.35s ease;
  }
  
  .admin-header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none;
  }
  
  .admin-header-left {
    flex: 1;
  }
  
.admin-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-header-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid #2679CF;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }
  
  .admin-header-icon-btn:hover {
    background-color: #f8f9fa;
    border-color: #5b9bd5;
  }
  
  .admin-notification-icon {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
  }
  
.admin-notification-badge {
  position: absolute;
  top: 1px;
  right: 0px;
  background-color: #ff4444;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  line-height: 14px;
}

.admin-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 10px;
    border-radius: 25px;
    transition: background-color 0.2s ease;
    cursor: pointer;
  }
  
  .admin-user-profile:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  .admin-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2679CF;
  }
  
  .admin-user-info {
    display: flex;
    flex-direction: column;
  }
  
  .admin-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
  }
  
  .admin-user-email {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
  }
  
.admin-content {
  margin-left: 70px;
  margin-top: 60px;
  padding: 30px;
  transition: margin-left 0.35s ease;
  background-color: #e8f4fd !important;
}
.secondary-div{
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}


.admin-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }
  
.admin-sidebar-backdrop.show {
  display: block;
}

@media (min-width: 768px) {

 .admin-sidebar-toggle {
    left: 47px;
 }
  .admin-sidebar.expanded ~ .admin-sidebar-toggle {
    left: 220px;
  }
   
}
@media (max-width: 990px) {
.field-value , .field-label{
    font-size: 12px !important  ;
  }
 
  }

@media (max-width: 767px) {
 
  
    .admin-sidebar {
      width: 240px;
      transform: translateX(-100%);
    }
  
    .admin-sidebar.show {
      transform: translateX(0);
    }
  
    .admin-sidebar-toggle {
      left: 0px;
      top: 50% !important;
    }
  
    .admin-sidebar.show ~ .admin-sidebar-toggle {
      left: 220px;
    }
  
    .admin-menu-item {
      justify-content: flex-start;
      padding-left: 14px;
    }
  
    .admin-menu-item span {
      display: inline;
    }
  
    .admin-header {
      left: 0;
    }
    
  .admin-content {
    margin-left: 0;
  }

  @media (max-width: 480px) {
    .admin-user-email {
      display: none;
    }
    
    .admin-user-name {
      font-size: 13px;
    }
  }
}
.New-Bookings-Card{
  background-color:#2679CF ;
  border-radius: 12px;
  border: 1px solid #2679CF;
}
.Billing-Pending-Card{
  background-color:#E3E6F1 ;
  border-radius: 12px;
  border: 1px solid #E3E6F1;
}
.Reports-Pending-Card{
 background-color:#239AB2 ;
  border-radius: 12px;
  border: 1px solid #239AB2; 
}
.booking-tabs {
  display: inline-flex;
  border: 1px solid #2679CF;
  border-radius: 10px;
  background-color: #ffffff;
  list-style: none;
  margin: 0;
  gap: 0;
  align-items: center;
}

.booking-tabs .nav-item {
  margin: 0;
  display: flex;
}

.booking-tabs .nav-link {
  color: #666;
  border-radius: 10px !important;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background-color: transparent;
  transition: all 0.2s ease;
  margin: 0;
  white-space: nowrap;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: center;
}

.booking-tabs .nav-link:hover {
  color: #666;
  background-color: transparent;
}

.booking-tabs .nav-link.active {
  background-color: #2679CF !important;
  color: #fff !important;
  border-radius: 10px;
  padding:6px 25px;
}

.booking-tabs.nav-pills .nav-link {
  border-radius: 10px;
}

.booking-tabs.nav-pills .nav-link.active {
  background-color: #2679CF;
}

.booking-pagination {
  margin-top: 20px;
}

.booking-pagination .pagination {
  justify-content: center;
  margin: 0;
  gap: 4px;
}

.booking-pagination .page-item {
  margin: 0;
}

.booking-pagination .page-link {
  border: none;
  color: #666;
  padding: 8px 14px;
  margin: 0;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.2s ease;
  font-size: 14px;
  min-width: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-pagination .page-link:hover {
  background-color: #f0f0f0;
  color: #666;
}

.booking-pagination .page-item.active .page-link {
  background-color: #2679CF;
  color: #fff;
  border-radius: 8px;
}

.booking-pagination .page-item.active .page-link:hover {
  background-color: #2679CF;
  color: #fff;
}

.booking-search-wrapper {
  position: relative;
}

.booking-search-input {
  border-radius: 10px;
  border: 1px solid #2679CF;
  padding-left: 40px;
  padding-right: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  background-color: #ffffff;
  width: 100%;
  height: auto;
}

.booking-search-input::placeholder {
  color: #999;
}

.booking-search-input:focus {
  border-color: #2679CF;
  box-shadow: 0 0 0 0.2rem rgba(38, 121, 207, 0.1);
  outline: none;
}

.booking-search-icon {
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #2679CF;
  font-size: 16px;
  pointer-events: none;
}


.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.booking-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
  font-size: 14px;
}

.booking-table thead th {
  background-color: #f8f9fa;
  color: #666;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  border: none;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.booking-table thead th:last-child {
  border-right: none;
}

.booking-table tbody td {
  border-bottom: 1px solid #dee2e6;
  font-size: 14px !important;
  padding: 12px 16px;
  color: #4b4949;
  white-space: nowrap;
  font-weight: 500;
}

.booking-table tbody tr:nth-child(odd) {
  background-color: #ecfcfc;
}

.booking-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.booking-table tbody tr:hover {
  background-color: #eaf3ff;
}

.table-action {
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}

.table-btn-view,
.table-btn-assign {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  color: #2679CF;
}

.table-btn-view:hover,
.table-btn-assign:hover {
  color: #1e5fa3;
  text-decoration: underline;
}

.table-btn-view i,
.table-btn-assign i {
  font-size: 14px;
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .secondary-div{
  padding: 0px !important;
}
.booking-tabs .nav-link {
padding: 8px 15px !important;
}
  .booking-table {
    font-size: 12px;
  }
  .booking-tabs{
      padding: 2px !important;
  }
  .pagination {
    gap: 5px !important;
}



  .booking-table thead th,
  .booking-table tbody td {
    padding: 15px 12px;
  }


  .table-btn-view,
  .table-btn-assign {
    font-size: 12px;
    padding: 4px 6px;
  }
  
  .exact-row{
    display: grid !important;
  }
}
/* view hsitory */
.calendar-svg{
  height: 45px;
  width: 45px;
  background-color: #2679CF;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .admin-content {
    padding: 15px 10px;
  }

  .card-body {
    padding: 1rem !important;
  }
.booking-pagination .page-link {
  border: none;
        color: #666;
        padding: 8px;
        font-size: 12px;
        min-width: 28px;
   
}
}

 .pagination {
gap: 10px;  }

    .modal-card {
      border-radius: 14px;
    }

    .booking-info {
      background: #eef6ff;
      border-radius: 10px;
      padding: 18px;
    }

    .field-label {
      font-size: 12px;
      color: #7a7a7a;
      font-weight: 700;
    }

    .field-value {
      font-size: 14px;
      color: #1f2937;
    }

    .field-value.is-primary {
      color: #2563eb;
    }

    .invoice-upload {
      border: 2px dashed #cbd5e1;
      border-radius: 10px;
      padding: 40px;
      text-align: center;
      cursor: pointer;
    }

    .invoice-upload span {
      color: #3b82f6;
      font-size: 14px;
      font-weight: 500;
    }

    .status-select {
      border-radius: 8px;
      height: 42px;
    }

    .btn-secondary-rounded {
      border-radius: 8px;
    }

    .btn-primary-rounded {
      border-radius: 8px;
      padding: 6px 22px;
    }
  

  

.multi-select {
    position: relative;
    max-width: 300px;
  }

  .select-input {
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    border: 1px solid #ddd;
  }

  .dropdown-box {
    position: absolute;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-top: 6px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 10;
  }

  .dropdown-box label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    cursor: pointer;
    font-size: 14px;
  }

  .dropdown-box label:hover {
    background: #f3f4f6;
    border-radius: 6px;
  }

  .dropdown-box input {
    cursor: pointer;
  }
  .select-input {
  background: #fff;
  border-radius: 10px;
  padding: 10px 40px 10px 14px;
  cursor: pointer;
  border: 1px solid #ddd;
  position: relative;
}

.select-input::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.multi-select.open .select-input::after {
  transform: translateY(-50%) rotate(-135deg);
}
.status-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  line-height: 1;
}

.status-badge--paid {
  background-color: #bbf7d0;   
  color: #15803d;              
}

.status-badge--unpaid {
  background-color: #fecaca;   
  color: #b91c1c;             
}
.admin-sidebar.expanded .admin-menu-item span{
  color: white;
}
.admin-menu-item.active span {
  color: #2679CF !important;
  font-weight: 600;
}

.add-collector-modal {
  border-radius: 16px;
  padding: 8px;
}

/* Labels */
.field-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #222;
}

/* Inputs & Select */
.form-input {
  width: 100%;
  height: 35px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 0px 15px;
  font-size: 14px;
}

.form-input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: none;
}




.btn-primary {
  background-color: #4f46e5;
  border: none;
  border-radius: 24px;
}

.btn-outline-secondary {
  border-radius: 24px;
}
.billing-pending{
  color: #239AB2;
  background-color: #fff;
  border-radius: 10px
}
.billing-pending img{
  height: 20px !important;
}
.phone-input {
  height: 44px;
    flex-wrap: nowrap;

}

.country-code {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  padding: 0 14px;
  color: #374151;
  height: 35px;
}

.phone-field {
  border-left: 1px solid lightgray;
  border-radius: 0 8px 8px 0;
  height: 35px;
}

.phone-field:focus {
  box-shadow: none;
  border-color: #3b82f6;
}

.country-code:has(+ .phone-field:focus) {
  border-color: #3b82f6;
}

.btn-primary {
  background: linear-gradient(90deg, #4F9CEC 0%, #62CFE5 100%);
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px; 
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(79, 156, 236, 0.35);
}

.btn-primary:active {
  box-shadow: 0 2px 6px rgba(79, 156, 236, 0.3);
}


