.sncft-container {
    max-width: 900px;
    margin: auto;
    font-family: Arial;
}

.sncft-form input, 
.sncft-form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.sncft-form button {
    background: #0b5ed7;
    color: white;
    border: none;
}

.auto-box {
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
}

.auto-box div {
    padding: 10px;
    cursor: pointer;
}

.auto-box div:hover {
    background: #f1f1f1;
}

.sncft-loader {
    display: none;
    border: 4px solid #eee;
    border-top: 4px solid #0b5ed7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* RTL */
html[lang="ar"] {
    direction: rtl;
    text-align: right;
}

.cards .card {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    margin-top: 10px;
    border-radius: 8px;
}