<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.custom-downloads-section {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-toggle {
    flex: 1;
    min-width: 200px;
    background: #f2f2f2;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.download-toggle:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.download-toggle span {
    transition: transform 0.3s ease;
}

.downloads-list {
    display: none;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    padding: 10px;
    margin-top: 5px;
    width: 100%;
}

.downloads-list p {
    margin: 8px 0;
}

.downloads-list a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.downloads-list a:hover {
    text-decoration: underline;
}

.ies-download-button {
    width: 100%;
    background: #f2f2f2;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    text-align: center;
}

.ies-download-button:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.download-icon {
    font-size: 16px;
    color: #333;
}

.downloads-list a:hover .download-icon,
.ies-download-button:hover .download-icon {
    color: #000;
}</pre></body></html>