.powerspeech-wrapper {
    position: fixed;
    left: 10px;
    top: 50%;
    margin-top: -120px;
    z-index: 9999;
}

.powerspeech-toggle {
    width: 52px;
    height: 52px;
    background: #005bbb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.powerspeech-panel {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #111;
    padding: 6px;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.powerspeech-panel.open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.powerspeech-panel button {
    background: #1c1c1c;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.powerspeech-panel button.active {
    background: #4da3ff;
}

html.powerspeech-contrast {
    filter: contrast(140%) brightness(110%);
}

.powerspeech-dark {
    background: #111 !important;
    color: #eee !important;
}

.powerspeech-dark a {
    color: #4da3ff !important;
}

.powerspeech-dark img {
    opacity: 0.9;
}