.ti-soicauwap-container {

}

.ti-soicauwap-form {
    background: #f8f9fa;
    padding: 10px;
    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-soicauwap {
    background: linear-gradient(135deg, #dc0708, #ff4444);
    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-soicauwap:hover {
    background: linear-gradient(135deg, #b50606, #dd3333);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 7, 8, 0.3);
}

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

#ti-soicauwap-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 th {
    background: #dc0708;
    color: white;
    text-align: center;
    font-weight: 600;
}

.ti-prediction-table td {
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.ti-prediction-table td:first-child {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    width: 50%;
}

.ti-prediction-table td:last-child {
    width: 50%;
}

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

.prediction-number {
    font-weight: bold;
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 4px;
    background: #f0f0f0;
}

.prediction-number.red {
    color: #dc0708;
    background: #ffe6e6;
}

.prediction-number.blue {
    color: #0066cc;
    background: #e6f2ff;
}

.prediction-number.green {
    color: #28a745;
    background: #e6f7e6;
}

.prediction-number.orange {
    color: #fd7e14;
    background: #fff3e6;
}

.ti-soicauwap-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 10px;
    margin: 20px 0;
}

.ti-soicauwap-note p {
    margin: 0;
    color: #856404;
    font-style: italic;
    text-align: center;
}

.ti-soicauwap-note a {
    color: #dc0708;
    text-decoration: none;
    font-weight: 600;
}

.ti-soicauwap-note a:hover {
    text-decoration: underline;
}

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

@media (max-width: 480px) {
    
    .ti-btn-soicauwap {
        padding: 10px 20px;
        font-size: 14px;
    }
    
}