/* ==================== Blue Link Button ==================== */

.blueBtn {
    padding: 4px 10px;
    background: rgba(76, 125, 255, 0.12);
    color: #6ea8ff !important;
    border: 1px solid rgba(76, 125, 255, 0.45);
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.15s ease;
}

.blueBtn:hover {
    background: rgba(76, 125, 255, 0.18);
    border-color: #5f9bff;
    color: #9cc2ff !important;
    box-shadow:
            0 0 6px rgba(76, 125, 255, 0.35),
            inset 0 0 6px rgba(76, 125, 255, 0.25);
}

/* ==================== Gold/Neon Link Button ==================== */

.neonBtn {
    padding: 4px 10px;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107 !important;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.15s;
}

.neonBtn:hover {
    background: rgba(255, 193, 7, 0.25);
}

/* ==================== Toolbar Action Button ==================== */

.actionBtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.actionBtn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.actionBtn img {
    width: 11px;
    height: 11px;
    opacity: 0.7;
    filter: invert(1);
    transition: opacity 0.15s;
}

.actionBtn:hover img {
    opacity: 0.9;
}

/* ==================== Refresh Icon Button ==================== */

.refreshBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}

.refreshBtn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(15deg);
}

.refreshBtn img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    filter: invert(1);
}

/* ==================== History Interval Selector ==================== */

.historyIntervalSelector {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.historyIntervalBtn {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    background: transparent;
    color: #9aa6c4;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.historyIntervalBtn:hover {
    background: rgba(255,255,255,0.08);
    color: #e2e8f5;
}

.historyIntervalBtn.active {
    background: rgba(100,120,200,0.25);
    border-color: rgba(100,120,200,0.6);
    color: #e2e8f5;
}
