h1 {
        color: #4CAF50;
        margin-bottom: 20px;
    }

    p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .drop-area {
        border: 2px dashed #007bff;
        border-radius: 8px;
        padding: 20px;
        margin: 20px 0;
        text-align: center;
        transition: background-color 0.3s;
    }

    

    .drop-area:hover {
        background-color: #f9f9f9;
    }

    #file-select-btn {
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    #file-select-btn:hover {
        background-color: #45a049;
    }

    .status {
        margin-top: 20px;
        font-size: 16px;
        color: #555;
    }

    #download-link {
        margin-top: 20px;
    }

    .btn {
        display: inline-block;
        background-color: #4CAF50;
        color: white;
        padding: 10px 15px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .btn:hover {
        background-color: #45a049;
    }


#convert-btn {
    background-color: #4CAF50;
    color: white;
    border: none; 
    padding: 10px 20px; 
    cursor: pointer; 
    border-radius: 5px; 
}

#convert-btn:hover {
    background-color: #45a049; 
}

.drop-area {
    width: 100%;
    height: 150px;
    border: 2px dashed #007bff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.drop-area.dragover {
    background-color: #f0f8ff;
}

.drop-area p {
    font-size: 16px;
    color: #007bff;
}

.btn {
    background-color: #45a049;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #45a049;
}

.status {
    margin: 20px 0;
    font-size: 18px;
    color: #333;
}

#download-link {
    margin-top: 20px;
}


