#bmt-toggle {
    background: transparent;
    border: 1px solid black;
    color: black;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#bmt-toggle:hover {
    background: black;
    color: white;
}

/* Black Mode Styles */
body.bmt-dark-mode {
    background-color: #000 !important;
    color: #fff !important;
}

body.bmt-dark-mode * {
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.bmt-dark-mode img,
body.bmt-dark-mode video {
    filter: none !important;
}
