body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    max-width: 600px;
}

h1 {
    text-align: center;
    color: #333;
}

#drop-area {
    border: 2px dashed #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    margin-bottom: 15px;
}

#pdf-icon {
    width: 50px;
    height: auto;
}

#drop-area p {
    margin: 20px 0;
    color: #555;
}

#drop-area p span {
    color: #007bff;
    cursor: pointer;
}

#upload-progress {
    width: 100%;
    height: 20px;
    margin-bottom: 15px;
    color: #007bff;
}

/* Style for the progress bar */
#upload-progress::-webkit-progress-bar {
    background-color: #f4f4f4; /* Light background */
}

#upload-progress::-webkit-progress-value {
    background-color: #007bff; /* Blue color for the progress */
}

#upload-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

#upload-button:hover {
    background-color: #45a049;
}
#delete-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    cursor: pointer;
}

