.download-filter-box {
  display: flex;
  gap: 25px;
  grid-gap: 25px;
}
.tab-nav a{
  padding: 0 49px;
    margin-right: unset;
}
.custom-select {
  width: 311px;
  height: 51px;
  background: #ffffff;
  border-radius: 3px 3px 3px 3px;
  border: 1px solid #dfdfdf;
  position: relative;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.custom-select:hover {
  border-color: #1885ed;
  box-shadow: 0 2px 8px rgba(24, 133, 237, 0.15);
}

.select-trigger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  box-sizing: border-box;
}

.select-value {
  font-weight: bold;
  font-size: 18px;
  color: #717171;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.custom-select.active .select-arrow {
  transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  border-top: none;
  border-radius: 0 0 3px 3px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-select.active .select-options {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
}

.select-option {
  padding: 12px 15px;
  font-weight: bold;
  font-size: 18px;
  color: #717171;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-option:hover {
  background: #f0f7ff;
  color: #1885ed;
}

.select-option.selected {
  background: #e6f2ff;
  color: #1885ed;
}
.row-line {
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  margin-top: 38px;
  margin-bottom: 40px;
}
.download-ul {
  /* margin-bottom: 52px; */
}
.download-ul li {
  border-bottom: 1px solid #e4e4e4;
  padding: 34px 24px;
}
.download-ul li:hover {
  background: #f8f8f8;
}
.download-ul h3 {
  font-weight: bold;
  font-size: 20px;
}
.download-ul img {
  margin-left: 5px;
}
.download-ul p {
  font-size: 16px;
  color: #141414;
  margin-top: 14px;
}
