.ti-soicau247-container {
}

.ti-soicau247-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row label {
    min-width: 140px;
    font-weight: 600;
    color: #333;
}

.form-row select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

.ti-btn-soicau247 {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.ti-btn-soicau247:hover {
    background: linear-gradient(135deg, #c82333, #ff5252);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

#ti-loading {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #666;
    background: #f8f9fa;
    border-radius: 6px;
    border: 2px dashed #ddd;
}

#ti-soicau247-results {
    margin-top: 20px;
}

.ti-prediction-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ti-prediction-table tbody tr {
    border-bottom: 1px solid #eee;
}

.ti-prediction-table tbody tr:last-child {
    border-bottom: none;
}

.ti-prediction-table td {
    padding: 15px;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.5;
}

.ti-prediction-table td:first-child {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #eee;
}

.prediction-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.prediction-number {
    font-weight: bold;
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 4px;
    background: #f0f0f0;
    color: #dc3545;
    min-width: 30px;
    text-align: center;
}

.prediction-number.highlight {
    background: #dc3545;
    color: white;
}

.prediction-separator {
    color: #666;
    font-weight: normal;
    margin: 0 5px;
}

.prediction-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.prediction-date {
    color: #dc3545;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
   
    .form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .form-row label {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .ti-prediction-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .prediction-numbers {
        gap: 5px;
    }
    
    .prediction-number {
        font-size: 14px;
        padding: 3px 6px;
        min-width: 25px;
    }
}

@media (max-width: 480px) {    
    .ti-soicau247-form {
        padding: 15px;
    }
    
    .ti-btn-soicau247 {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .ti-prediction-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .prediction-number {
        font-size: 13px;
        padding: 2px 5px;
        min-width: 22px;
    }
}