/* Smart Tables – Frontend Styles */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

.st-table-wrap {
    margin: 24px 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.st-table-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.st-table-scroll {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    border: 1px solid #e2e8f0;
}

.st-table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
}

.st-table th,
.st-table td {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    text-align: right;
    font-size: 14px;
    vertical-align: middle;
    line-height: 1.6;
}

.st-table .st-header-row th {
    background: #1e40af;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.st-table tbody tr:not(.st-header-row):nth-child(even) {
    background: #f8fafc;
}
.st-table tbody tr:not(.st-header-row):hover {
    background: #eff6ff;
}

.st-shortcode-hint {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 8px;
}
.st-shortcode-hint code {
    background: #f1f5f9;
    padding: 1px 6px;
    border-radius: 4px;
    direction: ltr;
    display: inline-block;
}
