@import url('https://fonts.googleapis.com/css2?family=Anek+Kannada&display=swap');
.pdf-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
    max-width: 1600px; /* Optional: Set a maximum width for the container */
    margin: 2px 10px 5px 10px;
    
}

.pdf-viewer {
    flex: 0 0 calc(31%);
    box-sizing: border-box;
}

.pdf-preview {
    text-align: center;
    text-decoration: none;
    display: block;
}

canvas {
    width: 100%;
    height: auto;
}
span{
    text-decoration: none;
    font-family: 'Anek Kannada';
    font-size: medium;
    color: black;
    font-weight: 500;
}
hr{
    display: none;
}
.pagination-box 
{
  display: flex;
  font-family: 'Anek Kannada';
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
}

.page-count {
  font-size: 16px;
  margin: 0 4px;
}

.pagination-button {
  font-size: 16px;
  text-decoration: none;
  color: black;
  padding: 5px 10px;
  margin: 0 5px;
  border: 1px solid #595959;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination-button:hover {
  background-color: #a93637;
  color: white;
}
      


@media (max-width: 1020px) {
    .pdf-viewer {
        flex: 0 0 calc(50% - 10px); 
    }
    .pagination-box {
      display: flex;
      font-family: 'Anek Kannada';
      align-items: center;
      justify-content: center;
      padding: 10px;
      border-radius: 5px;
    }
  
    .page-count {
      font-size: 13px;
      margin: 0;
    }
  
    .pagination-button {
      font-size: 13px;
      text-decoration: none;
      color: black;
      padding: 5px 10px;
      margin: 0 5px;
      border: 1px solid #595959;
      border-radius: 5px;
      transition: background-color 0.3s, color 0.3s;
    }
  
    .pagination-button:hover {
      background-color: #a93637;
      color: white;
    }
  

}

@media (max-width:550px) {
    .pdf-container{
        display: block;
        width: 90%;
        margin: 0 auto 0 auto;
    }
    hr{
        display: block;
    }
      .pagination-box 
      {
        display: flex;
        font-family: 'Anek Kannada';
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: 5px;
      }
    
      .page-count {
        font-size: 13px;
        margin: 0;
      }
    
      .pagination-button {
        font-size: 13px;
        text-decoration: none;
        color: black;
        padding: 5px 10px;
        margin: 0 5px;
        border: 1px solid #595959;
        border-radius: 5px;
        transition: background-color 0.3s, color 0.3s;
      }
    
      .pagination-button:hover {
        background-color: #a93637;
        color: white;
      }
}
