/* Thêm vào cuối file CSS */

/* Styling cho bảng gợi ý loto */
.loto-suggestion {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 5px 8px;
    margin: 2px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 14px;
}

.loto-suggestion.tail {
    background-color: #0066cc;
}

.loto-suggestion.highlight {
    background-color: #ff3300;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.suggestion-box {
    background-color: #f0f8ff;
    padding: 10px;
    border-left: 5px solid #0066cc;
    border-radius: 5px;
}

.suggestion-box h4 {
    color: #0066cc;
    margin-top: 0;
    margin-bottom: 10px;
}

.suggestion-disclaimer {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}