.program-container {
  font-family: 'Poppins', sans-serif;
  /* text-align: center; */
  margin-left: 20px;
  margin-right: 20px;
}
.program-header {
  margin-bottom: 40px;
}





.filter-sort-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    gap: 12px;
}

.sort-button,
.filter-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
    position: relative;
}

.sort-button:hover,
.filter-button:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.icon {
    width: 20px;
    height: 20px;
    color: #7B4397;
    vertical-align: middle;
}

.filter-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background-color: #7B4397;
    border-radius: 50%;
}

.filter-dropdown-wrapper {
    position: relative;
}

.filter-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: -120%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    min-width: 220px;
    z-index: 100;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    user-select: none;
}

.checkbox-container:last-child {
    margin-bottom: 0;
}

.checkbox-container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: #7B4397;
    border-color: #7B4397;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(123, 67, 151, 0.3);
}

.checkbox-container input[type="checkbox"]:hover {
    border-color: #7B4397;
}










.filter-dropdown-wrapper-sort {
    position: relative;
    margin-left: auto;
}
.filter-dropdown-content.show {
    display: block;
}

.filter-dropdown-content-sort {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: -70%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    min-width: 220px;
    z-index: 100;
}

.filter-dropdown-content-sort.show {
    display: block;
}
.checkbox-container-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    user-select: none;
}

.checkbox-container-sort:last-child {
    margin-bottom: 0;
}

.checkbox-container-sort input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
}

.checkbox-container-sort input[type="checkbox"]:checked {
    background-color: #7B4397;
    border-color: #7B4397;
}

.checkbox-container-sort input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container-sort input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(123, 67, 151, 0.3);
}

.checkbox-container-sort input[type="checkbox"]:hover {
    border-color: #7B4397;
}


.program-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}
.program-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.view-all-link {
  font-size: 16px;
  color: #7b4397;
  text-decoration: none;
  font-weight: 500;
}
.program-items {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px; /* For scrollbar visibility */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.program-items::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.program-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 90px;
  text-align: center;
}
.icon-circle {
  width: 75px;
  height: 75px;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); */
}
.program-item .icon-circle {
  background-color: #fff;
  /* border: 1px solid #7b4397; */
}
.program-item .icon-circle i {
  font-size: 28px;
  /* color: #7b4397; */
}
.program-item.active .icon-circle {
  background-color: #7b4397;
  border: none;
}
.program-item.active .icon-circle i {
  color: #fff;
}
.item-text {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.2;
}