.search-section {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
  }
  .baby-three-name{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .search-section h2 {
    margin-bottom: 15px;
    font-weight: normal;
  }
  
  .search-section input[type="text"] {
    width: 95%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .info-box {
    background-color: #12a9c4;
    color: white;
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 20px;
    text-align: center;
  }
  /* Main container styling */
  .names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
  }
  
  .name-box {
    margin-top: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .name-header {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    padding-bottom: 8px;
    background-color: #28A745;
    padding: 15px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    padding: 10px;
  }
  
  th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #eee;
  }
  
  th {
    width: 30%;
    font-weight: bold;
    color: #555;
  }
  
  .arabic {
    direction: rtl;
    font-family: 'Traditional Arabic', Arial, sans-serif;
    font-size: 18px;
  }
  
  .notes {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
  }
  
  @media (max-width: 768px) {
    .names-grid {
      grid-template-columns: 1fr;
    }
    .search-section{
        padding-top: 60px;
    }
  }