.ti-soicau24h-container {

}

.ti-soicau24h-form {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

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

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

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

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

.form-row select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

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

.ti-btn-soicau24h:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.ti-btn-soicau24h:active {
    transform: translateY(0);
}

#ti-loading24h {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

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

.tablesoicau24h {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tablesoicau24h td {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.tablesoicau24h tr:first-child td {
    background: linear-gradient(135deg, #ff0000, #b30000);
    color: white;
    font-weight: 600;
    text-align: center;
}

.tablesoicau24h tr:first-child td h2 {
    margin: 0;
    font-size: 18px;
    color: white;
    border-left: 0;
}

.tablesoicau24h tr:not(:first-child) td:first-child {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    width: 200px;
}

.tablesoicau24h tr:not(:first-child) td:last-child {
    background: #fff;
}

.tablesoicau24h tr:last-child td {
    border-bottom: none;
    font-style: italic;
    color: #6c757d;
    font-size: 13px;
    text-align: center;
}

.text-red {
    color: #dc3545 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    
    .form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .form-row label {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .tablesoicau24h td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tablesoicau24h tr:not(:first-child) td:first-child {
        width: auto;
    }
}

@media (max-width: 480px) {
    .tablesoicau24h td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .font-weight-bold {
        font-size: 14px;
    }
    
    .tablesoicau24h tr:first-child td h2 {
        font-size: 16px;
    }
}