/* Custom Table Styles */
.custom-table-container {
    margin: 2rem 0;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .custom-table thead {
    background: linear-gradient(45deg, #2989B7, #2989B7);
  }
  
  .custom-table th {
    color: #fff;
    font-weight: 600;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    font-size: 14px;
  }
  
  .custom-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .custom-table tbody tr {
    transition: all 0.3s ease;
  }
  
  .custom-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
  }
  
  .custom-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  /* Definition Fieldset Styles */
  .definition-fieldset {
    border: 2px solid #2989B7;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .definition-fieldset legend {
    background: linear-gradient(45deg, #2989B7, #2989B7);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
  }
  
  .definition-fieldset p {
    line-height: 1.6;
    color: #555;
    margin: 10px 0;
    padding: 0 10px;
  }
  
  /* Search Form Styles */
  .search-form-container {
    background: linear-gradient(45deg, #2989B7, #2989B7);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
  }
  
  .search-input {
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    width: 100%;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .search-input:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .search-button {
    background: #fff;
    color: #2989B7;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    background: #2989B7;
    color: #fff;
  }