.billboards-filter-div {
     display: flex;
    margin: 24px 0;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.billboards-voucher {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.billboards-tabs-titles {
    margin: 0;
    width: 100%;
}

.billboards-tabs-titles ul {
    justify-content: flex-start;
    gap: 32px;
    list-style: none;
    padding: 0;
    width: fit-content;
    border-bottom: 2px solid var(--e-global-color-752e732);
}

.billboards-tabs-titles ul li {
    padding: 6px 8px;
    position: relative;
    cursor: pointer;
}

.billboards-tabs-titles ul li.active {
    font-weight: 500;
}

.billboards-tabs-titles ul li.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--e-global-color-d2857b8);
    position: absolute;
    bottom: -2px;
    right: 0;
}
.search-container .search-div{
    border-bottom: 1px solid var(--e-global-color-f6de1b6) !important;

}
.search-container #billboard-search{
    border-bottom: none !important;
}
.tab-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.select-all-checkbox{
    padding: 10px 16px;
    align-items: center;
}
.board-items-wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.board-items-wrapper .board-item .checkbox-wrapper .board-status{
    margin-right: auto;
    margin-left: 22px;
}
.board-items-wrapper .board-item .checkbox-wrapper .date-right{
    margin-right: auto;
}
.board-items-wrapper .board-item .checkbox-wrapper {
    width: 100%;
    align-items: center;
}

.board-items-wrapper .board-item{
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #DCDFEA;
    background: #FFF;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.20);
}

.board-items-wrapper .board-item.selected{
    background: #F7FAFF;
}
.board-items-wrapper .board-item .inner-board-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0 24px;
    min-height: 80px;
}
.board-items-wrapper .board-item .inner-board-content .image img{
    max-width: 97px;
    max-height: 80px;
    width: 100%;
    height: auto;
}

.board-items-wrapper .board-item .inner-board-content .inner-cont .image .image-loader{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    bottom: 0;
    width: 30px;
    height: 30px;
}
.board-items-wrapper .board-item .inner-board-content .inner-cont .image{
    position: relative;
}
.board-items-wrapper .board-item .inner-board-content .inner-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.board-items-wrapper .board-item .inner-board-content .inner-cont .paid-status{
    border-radius: 50px;
    border: 1px solid #FFF;
    background: #E3F9CA;
    padding: 2px 8px;
    gap: 4px;
    display: flex;
}
.board-items-wrapper .board-item .inner-board-content .inner-cont .paid-status span{
    color: var(--e-global-color-d62292a);
}
.payment-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 0;
    flex-direction: row;
    gap: 16px;
}
.payment-section #send-billboards-payment{
    margin: 0 !important;
}

#send-billboards-payment.disabled {
    pointer-events: none;
    background: var(--e-global-color-c501ac7)
}
#load-more{
    text-align: center;
    color: #000080;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}
#show-all {
    margin-right: auto;
    color: #000080;
    cursor: pointer;
}
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.empty-state-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 180px;
  font-size: 15px;
  font-family: inherit;
}

.custom-select {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.custom-select-trigger {
  background: #fff;
  border-bottom: 1px solid var(--e-global-color-f6de1b6) !important;
  border-radius: 0;
  padding: 8px 12px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select-trigger::after {
  content: "▼";
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.custom-select.open .custom-select-trigger::after {
  transform: rotate(-180deg);
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 2px;
  display: none;
  z-index: 999;
  max-height: 180px;
  overflow-y: auto;
}

.custom-select.open .custom-options {
  display: block;
}

.custom-option {
  padding: 8px 12px;
  transition: background 0.2s;
}

.custom-option:hover {
  background: #f2f2f2;
}

.custom-option.active {
  background: #0073aa;
  color: #fff;
}