.eg-export-options {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 24px 0;
}
.eg-export-btn {
    background: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.eg-export-btn:hover, .eg-export-btn:focus {
    background: #e6f0fa;
    border-color: #4285F4;
}
.eg-export-btn svg {
    display: block;
}
#eg-export-msg {
    margin-top: 10px;
    color: green;
    font-weight: bold;
    display: none;
}