.container_pdf {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
   
}
/* Button container styling */
.createpdf {
    display: flex;
    justify-content: center; /* Center the buttons horizontally */
    gap: 45px; /* Space between buttons */
    margin-top: 7px;
    margin-bottom: 20px;
  }
  
  /* Button styling */
  .pdfbutton {
    padding: 10px 18px; /* Increase padding for better click area */
    font-size: 14px; /* Increase font size */
    font-weight: 600;
    border-radius: 10px; /* Rounded corners for modern look */
    border: none;
    cursor: pointer;
    text-transform: uppercase; /* Make text uppercase */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    background: linear-gradient(135deg, #29cb29, #218838);
    color: white; /* White text color */
  }
  
  .pdfbutton:hover {
    background: linear-gradient(135deg, #218838, #29cb29);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Darker shadow on hover */
  }
  
  
  
  /* Style for the second button (My Blogs) */
  .pdfbutton.secondary {
    background-color: #28a745; /* Green background for secondary button */
  }
  
  .pdfbutton.secondary:hover {
    background-color: #218838; /* Darker green for hover effect */
  }
  
  .pdfbutton.secondary:focus {
    border: 2px solid #218838; /* Green border on focus */
  }
  
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 13px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

form.search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

form.search-form input[type="text"] {
    padding: 10px;
    border: 1px solid #575656;
    border-radius: 4px;
    font-size: 16px;
    width: 70%;
}

form.search-form button.search-btn {
    padding: 10px 15px;
    background-color: #2b60c9;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

form.search-form button.search-btn:hover {
    background-color: #1e1ee0;
}

.pdf-list {
    list-style-type: none;
    padding:10px;
}

.pdf-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
    overflow:scroll;
}

.pdf-thumbnail {
    width: 80px;
    height: 100px;
    margin-right: 20px;
    border-radius: 4px;
    object-fit: cover;
}

.pdf-details {
    flex: 1;
}

.pdf-name {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}

.pdf-description {
    color: #666;
    margin-bottom: 5px;
}

.pdf-link {
    text-decoration: none;
    color: #007bff;
}

.pdf-link:hover {
    text-decoration: underline;
}

.pdf-user {
    display: flex;
    align-items: center;
    font-size: smaller;
    margin-bottom: 5px;
}

.user-profile-img {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    margin-right: 5px;
}


@media only screen and (max-width:800px) {
  
    
form.search-form input[type="text"] {
    width: 90%;
}
   
  }