/* Basic styling for the FreeConvert Image Converter */
#icf-converter-app {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    max-width: 500px;
    background-color: #f9f9f9;
}

#icf-converter-app label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#icf-converter-app input[type="file"],
#icf-converter-app select,
#icf-converter-app input[type="submit"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#icf-converter-app input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

#icf-converter-app input[type="submit"]:hover {
    background-color: #005177;
}

#icf-converter-result a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

#icf-converter-result a:hover {
    background-color: #45a049;
}

#icf-converter-result .error {
    color: red;
    font-weight: bold;
}

#icf-loading-indicator {
    margin-top: 15px;
    font-style: italic;
    color: #555;
}
