.download_main_conteinar{
    width: 100%;
    height: auto;
    /* padding-top: 110px; */
    background-image: url(../../image/download.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;

}

.download_main_conteinar_area{
    width: 95%;
    height: auto;
    height: 28vh;
    margin: auto;
    text-align: center
}
.download_main_conteinar_header{
  position: absolute;
  right: 50px;
}
.download_main_conteinar_area h1{
    color: #fff;
    font-size: 35px;
    padding-top: 55px;
}
.download_main_conteinar_area p{
   color: #fff;
    font-size: 15px;
}
.download_main_conteinar_area p a{
    color: #fff;
    text-decoration: none;
}


.download_all_file_conteinar{
    width: 100%;
    height: auto;
    background: #eef2f7;
}
.download_all_file_conteinar_area{
    width: 95%;
    height: auto;
    margin: auto;
}
.table-container {
  max-width: 100%;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  margin: 20px 0px;
}

.search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0px;
  gap: 10px;
  border-bottom: 1px solid #3E3E86;
}
.search-bar-left{
    display: flex;
    align-items: center;
    gap: 15px;
  }
.search-bar-left h3 i{
    font-size: 25px;
  }
.search-bar-left h3{
    font-size: 18px;
  color: #3E3E86;
}
.search-bar-right {
  flex: 1;
  min-width: 220px;
  text-align: right;
}

.search-input {
  width: 35%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  background: #fff;
}

.custom-table thead {
  background: #ffffff;
}

.custom-table th {
  text-align: left;
  padding: 10px 15px;
  font-size: 14px;
  color: #3E3E86;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #f0f0f0;
  border-right: 2px solid #eee;
}

.custom-table tbody tr {
  background: #f9fafb;
  border-radius: 8px;
  transition: 0.3s;
  
}

.custom-table tbody tr:hover {
  background: #eef2f7;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.05);
}

.custom-table td {
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  border-right: 2px solid #eee;
}

.btn-download {
  padding: 8px 14px;
  background: linear-gradient(90deg, #3E3E86, #3E3E86);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}

.btn-download:hover {
  background: linear-gradient(90deg, #4d4da3, #5151ac);
}

/* Responsive */
@media (max-width: 1200px) {
  .custom-table th, .custom-table td {
    padding: 14px 10px;
    font-size: 13px;
  }

  .btn-download {
    padding: 6px 12px;
    font-size: 12px;
  }

  .search-bar-left {
    width: 100%;
  }
  .download_main_conteinar_area h1{
    padding-top: 80px;
}
}

@media (max-width: 480px) {
  .custom-table {
    font-size: 12px;
  }
}