.cbs-widget-container {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    direction: rtl; /* Force RTL for Persian */
}

.cbs-widget-container > span {
    font-size: 1.3rem;
    font-weight: bold;
    word-spacing: -2px;
    color: #AD2323;
}

#cbs-form {
    margin-top: 2rem;
}

.cbs-input-group {
    margin-bottom: 15px;
}

.cbs-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.cbs-input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-family: 'iransans';
}

.cbs-submit-group button {
    width: 100%;
    padding: 12px;
    background-color: #AD2323; /* Change to your brand color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    font-family: 'iransans';
}

.cbs-submit-group button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Horizontal Layout */

@media (min-width: 768px) {
    #cbs-form {
        display: flex;
        gap: 10px;
        align-items: flex-end;
    }
    .cbs-input-group, .cbs-submit-group {
        flex: 1;
        margin-bottom: 0;
    }
}