.ti-pascal-container {
    text-align: center;
}

.ti-pascal-form {
    margin-bottom: 15px;
    text-align: center;
}

.ti-pascal-form label {
    font-weight: bold;
    margin-right: 10px;
}

#ti-regionSelect {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

.ti-btn-pascal {
    padding: 8px 16px;
    background-color: #a80000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.ti-btn-pascal:hover {
    background-color: #005a87;
}

#ti-titlePascal {
    text-align: center;
    border-left: 0;
}

#ti-specialPrize, #ti-firstPrize {
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
}

#ti-specialPrize span, #ti-firstPrize span {
    font-weight: bold;
    color: #d63384;
    font-size: 20px;
}

#ti-pascalTriangle {
    text-align: center;
    margin: 20px 0;
}

#ti-pascalTriangle > div {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ti-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
}

#ti-result {
    text-align: center;
    color: #333;
}

.ti-result-number {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #28a745;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 28px;
}

#ti-loading {
    text-align: center;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {

    
    .ti-pascal-form {
        flex-direction: column;
        align-items: center;
    }
    
    #ti-regionSelect {
        margin-bottom: 10px;
        margin-right: 0;
        width: 200px;
    }
    
    .ti-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
        margin: 0 3px;
    }
    
    .ti-result-number {
        font-size: 24px;
        padding: 8px 16px;
        margin: 0 5px;
    }
}