body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.drag-area {
    border: 2px dashed #4CAF50;
    height: 150px;
    width: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    color: #4CAF50;
    font-weight: bold;
    cursor: pointer;
}
input[type="file"] {
    display: none;
}
.btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.btn:hover {
    background-color: #45a049;
}

.compress-option {
    margin-bottom: 20px;
    display: block; /* Ensure it takes its own line */
    color: #4CAF50; /* Matching your theme color */
    font-weight: bold;
}

/* Style adjustments for the checkbox */
.compress-option input[type="checkbox"] {
    margin-right: 10px;
}