.ts-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(0,0,0,0.1);
    max-width: 380px;
    margin: 40px auto;
    text-align: center;
    direction: rtl;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ts-input {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.ts-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #0099ff, #0056ff);
    color: white;
    border-radius: 10px;
    border: none;
    margin-top: 15px;
    font-size: 16px;
    cursor: pointer;
}

.ts-btn:hover {
    opacity: .95;
}

.ts-region-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ts-region {
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #f5f5f5;
}

.ts-region.active {
    background: #0099ff;
    color: white;
    border-color: #0099ff;
}

.ts-link {
    background: none;
    border: none;
    color: #0099ff;
    margin-top: 15px;
    cursor: pointer;
    display: inline-block;
}

.ts-label {
    display: block;
    text-align: right;
    margin: 8px 0 4px;
    font-size: 14px;
}

.ts-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.ts-card h3 {
    color: #000000 !important;
}
.ts-region {
    color: #000000 !important;
    background: #f1f1f1;
    border: 1px solid #ccc;
}

.ts-region.active {
    background: #0099ff;
    color: #ffffff !important;
}
