/* ===== SETTINGS WIDGET — Shraddha 29/04/2026 ===== */

.settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: #022857;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.settings-panel {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    min-width: 185px;
}

.settings-option {
    display: block;
    width: 100%;
    margin-bottom: 6px;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
}

.settings-option:hover {
    background-color: #f0f0f0;
}

/* ===== END SETTINGS WIDGET CSS ===== */
