#streaming-intent-block {
    text-align: center;
    margin: 16px 0 20px;
}

#streaming-intent-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #8fb8c7;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px dashed rgba(143, 184, 199, 0.6);
    transition: all 0.2s ease;
    border-radius: 4px;
}

#streaming-intent-btn:hover {
    color: #a8d5e8;
    border-bottom-color: rgba(168, 213, 232, 0.8);
    background: rgba(255, 255, 255, 0.03);
}

#streaming-intent-btn:disabled {
    color: #00D18A;
    border-bottom: none;
    cursor: default;
    background: none;
    position: relative;
}

#streaming-intent-btn:disabled::before {
    content: "✓";
    margin-right: 8px;
    display: inline-block;
}