:root {
    --primary-color-site: #034833;
    --secondary-color: #53a018;
    --font-size: 16px;
}

.container {
    width: 50%;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#drop-zone {
    border: 2px dashed var(--primary-color-site);
    padding: 30px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background 0.3s;
}

#drop-zone:hover {
    background-color: #e8f0ff;
}

#drop-zone p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

#drop-zone label {
    color: var(--primary-color-site);
    font-weight: bold;
    cursor: pointer;
}

input[type="file"] {
    display: none;
}

#file-list {
    margin-top: 15px;
    text-align: left;
}

.file-item {
    padding: 5px;
    border-bottom: 1px solid #ddd;
}
.converter-download-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
.converter-download-btn:hover {
    background-color: #0056b3;
}