.specific-name-title{
    background-color: #28A745;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'SolaimanLipi';
}
.specific-grid {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding-bottom: 20px;
}

.name-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.name-box:hover {
    transform: translateY(-5px);
}

.name-header {
    background-color: #2e7d32;
    color: white;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
    width: 30%;
}

tr:last-child td {
    border-bottom: none;
}

.notes {
    font-style: italic;
    color: #666;
}

.arabic {
    direction: rtl;
    font-family: 'Traditional Arabic', 'Arial Unicode MS', sans-serif;
    font-size: 18px;
}

.specific-name-title h1 {
    text-align: center;
    color: white;
}
.baby-filter-dropdown-container {
    display: grid;
    gap: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    /* justify-content: space-between;
    flex-wrap: wrap; */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));


  }
  
  .baby-filter-dropdown {
    padding: 15px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    /* min-width: 400px; */
    cursor: pointer;
  }
  
  .baby-filter-btn-show {
    background-color: white;
    border: 1px solid #ccc;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .baby-filter-btn-show:hover {
    background-color: #117989;
    color: white;
  }
  
  .baby-filter-result-box {
    background-color: #d73838;
    color: white;
    text-align: center;
    font-size: 18px;
    padding: 10px;
    margin-top: 15px;
    border-radius: 6px;
    font-family: 'SolaimanLipi', sans-serif;
  }
  
@media (max-width:950px){
    .specific-name-title{
        margin-top: 200px;
    }
}
@media (max-width:900px){
    .specific-name-title{
        margin-top: 160px;
    }
}
@media (max-width:768px){
    .specific-name-title{
        margin-top: 60px;
    }
}