.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    text-align: left;
}

.nice-select .list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px; /* تحديد أقصى ارتفاع للقائمة */
    overflow-y: auto; /* تمكين التمرير العمودي عند الحاجة */
    display: none; /* إخفاء القائمة افتراضيًا */
    z-index: 999; /* التأكد من أنها تظهر فوق العناصر الأخرى */
}

.nice-select.open .list {
    display: block; /* إظهار القائمة عند فتحها */
}

.nice-select .list .option {
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.nice-select .list .option:hover {
    background: #f0f0f0;
}

/* التأكد من أن آخر عنصر لا يكون مخفيًا */
.nice-select .list .option:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}



.nice-select.open .list {
    margin-top: 0.9px!important;
  }


  .pmpro {
    & .pmpro_card_content {
      padding: var(--pmpro--base--spacing--small) var(--pmpro--base--spacing--large) var(--pmpro--base--spacing--large);
      padding-bottom: 80px;
    }
  }

  