.export-container {
    position: relative;
    display: inline-block;
}
.export-button {
    border: 2px solid #009dff;
    background-color: #ebf7ff;
    color: #009dff;
    font-weight: 700;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
}
.export-button i {
    margin-right: 8px;
}
.export-button:focus{
    outline: none;
}
#exportBtn .fa{
    color: #009dff;
}
#exportBtn .fa:hover{
    color: #fff;
}
.export-button #exportBtn .fa:hover{
    border-color: #009dff;
    background-color: #009dff;
    color: #fff;
    outline: none;
}
.export-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); 
    z-index: 1;
    min-width: 160px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.export-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.export-menu a i {
    margin-right: 10px;
}
.export-menu a:hover {
    background-color: #f1f1f1;
}
#copyAlert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    border: 2px solid #009dff;
    background-color: #ebf7ff;
    color: #009dff;
    border-radius: 3px;
    z-index: 9999;
    display: none;
    text-align: center;
}