*{
  font-family: "Nunito";
  font-optical-sizing: auto;
}
body {
    /* font-family: Arial, sans-serif; */
    /* background:  radial-gradient(farthest-corner circle at top, #2f65ac 0, #152a4d 100%); */
    background: #fff567 !important;
  }
  
.custom-card-width {
  width: 70%; /* Adjust this percentage for desired width */
  max-width: 500px; /* Optional: Set a maximum width */
}

#sourceContainer {
  row-gap: 20px; /* Adds space between rows */
}


  h1 {
    font-size: 24px;
    color: #272726;
  }
  
  .card {
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .underline{
    color: white !important;
  }
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .card-title {
    font-size: 16px;
    font-weight: bold;
  }
  
  .input-group-text {
    border-right: none;
  }
  
  .form-control {
    border-left: none;
  }
  .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1rem;
}
  img.card-img-top {
    object-fit: contain;
  }
  .row.g-1 {
    margin-left: 185px;
    margin-right: 46px;
  }
  
  .row.g-1 > [class*='col-'] {
    padding-left: 5px; /* Match the margin adjustment */
    padding-right: 5px;
  }
  
  .spiner_board {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  
  .custom_img {
    height: 100px; /* Increases image size */
  }
  .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  