.card-header-text{
    padding-top: 2.5%;
    font-weight: 600;
    font-size: 23px;
    color: #13274C;
    line-height: 19.2px;
}

.uar-card-header-text{
    padding-top: 2.5%;
    font-weight: 600;
    font-size: 23px;
    color: #3D6EC1;
    line-height: 19.2px;
}

.paddingless{
    padding-top: 0%;
}

.card-header-div div{
    margin-bottom: 0.1rem ;
}

.modal-title{
    font-weight: bold;
    font-size: x-large;
    color: #13274C;
}

.close{
    font-weight: bold;
    font-size: x-large;
    padding-top: 20px !important;
    padding-right: 20px !important;
}

.card {
    border-radius: 15px;
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
  
  /* Card-specific pagination styles */
  .card .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin: 1rem 0;
  }
  
  .card .page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.375rem 0.75rem;
    color: #13274c; 
    text-decoration: none;
    background-color: #fff; 
    border: 1px solid #13274c; 
    transition: all 0.2s ease-in-out;
  }
  
  .card .page-item:not(:first-child) .page-link {
    margin-left: -1px;
  }
  
  .card .page-item.active .page-link {
    z-index: 3;
    color: #fff; 
    background-color: #13274c; 
    border-color: #13274c;
  }
  
  .card .page-link:hover {
    z-index: 2;
    color: #fff;
    background-color: #13274c;
    border-color: #13274c;
  }
  
  .card .page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(19, 39, 76, 0.25);
  }
  
  .card .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #13274c;
    opacity: 0.5;
  }
  
  /* Border radius for first and last items */
  .card .page-item:first-child .page-link {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  
  .card .page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }