/* Custom styles for the Featured Image Downloader */
.fid-download-buttons {
    display: flex;
    gap: 10px;
}

.fid-download-button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fid-download-button:hover {
    background-color: #0056b3;
}

.fid-custom-size-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#fid-custom-width,
#fid-custom-height {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#fid-download-custom-size {
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#fid-download-custom-size:hover {
    background-color: #218838;
}
