body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.remove {
    color: red;
    margin-left: 10px;
    cursor: pointer;
}

#download-button {
    /* Add button-like styles here */
    cursor: pointer;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none; /* Removes underline from links */
}

#download-button:hover {
    background-color: #0056b3;
}

/* Style for PDF placeholder image (if used) */
.pdf-thumbnail {
    width: 50px; /* Thumbnail size */
    margin-right: 10px;
}

#pdf-uploader {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px dashed #007bff;
    padding: 10px;
    margin: 20px;
}

#pdf-input {
    margin-bottom: 10px;
}


#pdf-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%; /* Take full width of the container */
    margin-top: 10px;
    gap: 10px;
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
}

.custom-file-upload:hover {
    background-color: #e2e6ea;
}


#pdf-preview img {
    max-width: 100px;
    margin: 10px;
    border: 1px solid #ddd;
    padding: 5px;
}

button {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}
