/* 智能注额提示样式 */

/* 提示按钮基础样式 */
.suggestion-btn {
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 不同类型按钮的颜色 */
.suggestion-btn-small {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.suggestion-btn-standard {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.suggestion-btn-aggressive {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.suggestion-btn-very-aggressive {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.suggestion-btn-allin {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    font-weight: 700;
}

.suggestion-btn-call {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
}

/* 按钮悬停效果 */
.suggestion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.suggestion-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 容器响应式设计 */
@media (max-width: 480px) {
    .bet-suggestion-container {
        padding: 6px 8px;
        gap: 4px;
        max-width: calc(100vw - 30px);
    }
    
    .suggestion-btn {
        padding: 5px 10px;
        font-size: 11px;
        min-width: 45px;
    }
}

@media (max-width: 360px) {
    .bet-suggestion-container {
        padding: 5px 6px;
        gap: 3px;
    }
    
    .suggestion-btn {
        padding: 4px 8px;
        font-size: 10px;
        min-width: 40px;
    }
}

/* 滚动条样式（如果需要） */
.bet-suggestion-container::-webkit-scrollbar {
    height: 4px;
}

.bet-suggestion-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.bet-suggestion-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.bet-suggestion-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* 小注 - 蓝色/冷色 */
.suggestion-btn-small {
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.4);
    color: #3498db;
}

/* 中注 - 黄色/中性 */
.suggestion-btn-standard {
    background: rgba(241, 196, 15, 0.2);
    border: 1px solid rgba(241, 196, 15, 0.4);
    color: #f1c40f;
}

/* 大注/满池 - 红色/激进 */
.suggestion-btn-aggressive {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}
/* 最简单的助手样式 */
.bet-assist-popup {
    position: absolute;
    background: #2c3e50;
    border-radius: 6px;
    padding: 8px;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bet-popup-title {
    color: #bdc3c7;
    font-size: 11px;
    margin-bottom: 6px;
    text-align: center;
}

.bet-btn-grid {
    display: flex;
    gap: 6px;
}

.bet-assist-btn {
    background: #34495e;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.bet-assist-btn:hover {
    background: #3498db;
}
/* 在 bet-suggestions.css 中添加 */
.bet-assist-popup {
    position: fixed;
    background: #2c3e50;
    border-radius: 8px;
    padding: 10px;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.1s ease;
}

.bet-assist-popup.visible {
    opacity: 1;
}
.bet-assist-btn.call-btn {
    background: #1abc9c; /* 绿色调，表示跟注 */
    font-weight: bold;
}
