/* ================= CSS (style.css) ================= */
#sat-topbar {
    width: 100%;
    background: linear-gradient(90deg, #0b3d91, #1e5799);
    color: #fff;
    font-size: 14px;
}

.sat-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 6px 10px;
    gap: 8px;
}

.sat-label {
    margin-right: 10px;
    font-weight: 500;
}

#sat-topbar button {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

#sat-topbar button:hover {
    background: rgba(255,255,255,0.3);
}

/* DARK ACCESSIBILITY MODE */
.sat-dark-mode {
    background: #ffffff !important;
    color: #000000 !important;
}

.sat-dark-mode * {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

.sat-dark-mode a {
    color: yellow !important;
}

.sat-dark-mode img {
    filter: grayscale(100%) !important;
}