:root {
            /* Sheikan official palette */
            --sh-maroon:    #7a2e31;
            --sh-blue:      #064c9e;
            --sh-blue-mid:  #0000a7;
            --sh-blue-light:#4d86be;
            --sh-red:       #cc0000;
            --sh-red-dark:  #5b2023;
            --sh-gray:      #6b7280;
            --sh-gray-light:#f2f3f4;
            --sh-silver:    #a8a9ab;
            --sh-black:    #000030;
            --sh-white:     #ffffff;
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Source Sans 3', sans-serif;
            font-weight: 400;
            color: var(--sh-black);
            background: #fff;
            margin: 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cairo', 'Source Sans 3', sans-serif;
            color: var(--sh-red);
        }
        html[dir="rtl"] body,
        html[dir="rtl"] .navbar,
        html[dir="rtl"] input,
        html[dir="rtl"] textarea {
            font-family: 'Cairo', 'Source Sans 3', sans-serif;
        }
        html[dir="rtl"] .section-title {
            border-left: none;
            
            padding-left: 0;
            padding-right: 1px;
        }
        html[dir="rtl"] .hero-slider .carousel-caption {
            text-align: right;
        }
        html[dir="rtl"] .rector-quote {
            border-left: none;
            border-right: 3px solid var(--sh-red);
            padding-left: 0;
            padding-right: 16px;
        }

        a { text-decoration: none; color: inherit; }
        a:hover { color: var(--sh-red); }

        /* ── TOP BAR ────────────────────────────────── */
        .top-bar {
            background: var(--sh-black);
            color: #bbc2cc;
            font-size: 0.78rem;
            padding: 6px 0;
           
        }
        .top-bar a { color: #bbc2cc; }
        .top-bar a:hover { color: #fff; }
        .top-bar .lang-btn {
            background: var(--sh-red);
            color: #fff;
            padding: 2px 10px;
            border-radius: 3px;
            font-size: 0.75rem;
        }

        /* ── HEADER ─────────────────────────────────── */
        .site-header {
            background: var(--sh-blue);
            padding: 1px 0;
        }
        .site-header .compact-brand-text,
        .univ-name {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #00c;
            line-height: 1.1;
            text-transform: uppercase;
            line-height: 1.2;
        }
        .site-header .univ-name small {
            display: block;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 0.85rem;
            font-weight: 300;
            color: #c00;
            letter-spacing: 1px;
        }
        .site-header .logo-wrap img {
            height: 80px;
            width: auto;
        }
        .logo-placeholder {
            width: 80px; height: 80px;
            background: var(--sh-red);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 1.6rem;
        }

        /* ── NAVBAR ─────────────────────────────────── */
        .main-nav {
            
            border-bottom: 0px solid var(--sh-red);
        }
        .main-nav .navbar-nav .nav-link {
            color: #000777 !important;
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            padding: 12px 14px !important;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav .navbar-nav .nav-link:hover,
        .main-nav .navbar-nav .nav-link.active {
            background: var(--sh-red);
            color: #fff !important;
        }
        .main-nav .dropdown-menu {
            background: #fff;
            border: none;
            border-radius: 0;
            border-top: 0px solid var(--sh-red);
            min-width: 220px;
        }
        .main-nav .dropdown-item {
            color: #c8daf0;
            font-size: 0.85rem;
            padding: 8px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }
        .main-nav .dropdown-item:hover {
            background: var(--sh-red);
            color: #fff;
        }
        .navbar-toggler { border-color: rgba(255,255,255,0.3); }
        .navbar-toggler-icon { filter: invert(1); }

        /* ── HERO / SLIDER ───────────────────────────── */
        .hero-slider { position: relative; overflow: hidden; }
        .hero-slider .carousel-item {
            height: 460px;
            background: var(--sh-blue);
        }
        .hero-slider .carousel-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 1;
        }
        .hero-slider .carousel-caption {
            bottom: 50%;
            transform: translateY(50%);
            text-align: left;
            left: 8%;
            right: 8%;
        }
        .hero-slider .carousel-caption h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0,0,0,.04);
        }
        .hero-slider .carousel-caption p {
            font-size: 1rem;
            color: #ccdff5;
            max-width: 520px;
        }
        .hero-slider .carousel-indicators button {
            background: var(--sh-red);
            width: 30px; height: 4px;
        }
        .hero-slider .carousel-control-prev-icon,
        .hero-slider .carousel-control-next-icon { filter: none; }

        /* ── SECTION HEADINGS ────────────────────────── */
        .section-title {
            font-family: 'Cairo', 'Source Sans 3', sans-serif;
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--sh-blue);
            border-left: 4px solid var(--sh-red);
            padding-left: 12px;
            margin-bottom: 24px;
        }
        .section-title.center {
            border-left: none;
            text-align: center;
            padding-left: 0;
        }
        .section-title.center::after {
            content: '';
            display: block;
            width: 50px; height: 3px;
            background: var(--sh-red);
            margin: 8px auto 0;
        }

        /* ── STATS BAR ───────────────────────────────── */
        .stats-bar {
            background: #fff;
            border-bottom: 4px solid var(--sh-red);
            padding: 28px 0;
        }
        .stat-item { text-align: center; }
        .stat-item .stat-num {
            font-family: 'Cairo', 'Source Sans 3', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--sh-red);
            border-left: 4px solid var(--sh-blue);
        }
        .stat-item .stat-label {
            font-size: 0.82rem;
            color: #a8c4e8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stat-divider {
            width: 1px;
            background: rgba(255,255,255,0.15);
            margin: 0 auto;
        }

        /* ── NEWS CARDS ──────────────────────────────── */
        .news-card {
            border: none;
            border-radius: 0;
            box-shadow: 0 2px 2px rgba(0,0,0,.08);
            transition: transform 0.2s, box-shadow 0.2s;
            overflow: hidden;
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,.15);
        }
        .news-card .card-img-top {
            height: 180px; object-fit: cover;
        }
        .news-card .card-img-placeholder {
            height: 180px;
            background: linear-gradient(135deg, var(--sh-blue) 0%, var(--sh-blue-mid) 100%);
            display: flex; align-items: center; justify-content: center;
        }
        .news-card .card-img-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,0.3); }
        .news-card .card-body { padding: 16px; }
        .news-card .card-date {
            font-size: 0.75rem;
            color: var(--sh-red);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .news-card .card-title {
            font-family: 'Cairo', 'Source Sans 3', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--sh-black);
            margin: 6px 0;
            line-height: 1.35;
        }
        .news-card .read-more {
            color: var(--sh-blue-mid);
            font-size: 0.82rem;
            font-weight: 600;
        }
        .news-card .read-more:hover { color: var(--sh-red); }

        /* ── ANNOUNCEMENTS ───────────────────────────── */
        .ann-section { background: var(--sh-gray-light); }
        .ann-item {
            background: #fff;
            border-left: 0px solid var(--sh-red);
            padding: 14px 16px;
            margin-bottom: 10px;
            transition: border-color 0.2s;
        }
        .ann-item:hover { border-color: var(--sh-blue); }
        .ann-item h6 {
            font-family: 'Cairo', 'Source Sans 3', sans-serif;
            font-size: 0.95rem;
            margin: 0 0 4px;
            color: var(--sh-black);
        }
        .ann-item small { color: var(--sh-gray); font-size: 0.78rem; }

        /* ── COLLEGES GRID ───────────────────────────── */
        .college-card {
            border: 1px solid #dde2ea;
            border-radius: 4px;
            padding: 20px;
            text-align: center;
            transition: all 0.2s;
            height: 100%;
            background: #fff;
        }
        .college-card:hover {
            border-color: var(--sh-red);
            background: var(--sh-blue);
            color: #fff;
        }
        .college-card:hover .college-icon { color: #fff; }
        .college-card:hover .college-name { color: #fff; }
        .college-icon {
            font-size: 2rem;
            color: var(--sh-blue-mid);
            margin-bottom: 10px;
        }
        .college-name {
            font-family: 'Cairo', 'Source Sans 3', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--sh-black);
            line-height: 1.3;
        }

        /* ── RECTOR SECTION ──────────────────────────── */
        .rector-section {
            background: var(--sh-black);
            color: #fff;
            padding: 60px 0;
        }
        .rector-section .rector-img {
            width: 130px; height: 130px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--sh-red);
        }
        .rector-section .rector-img-placeholder {
            width: 130px; height: 130px;
            border-radius: 50%;
            background: var(--sh-blue);
            border: 4px solid var(--sh-red);
            display: flex; align-items: center; justify-content: center;
            font-size: 3rem; color: rgba(255,255,255,0.4);
        }
        .rector-quote {
            font-style: italic;
            font-size: 1rem;
            color: #c8d6e8;
            border-left: 3px solid var(--sh-red);
            padding-left: 16px;
        }

        /* ── FOOTER ─────────────────────────────────── */
        .site-footer {
            background: var(--sh-black);
            color: #8a96a4;
            padding: 50px 0 0;
        }
        .site-footer h5 {
            color: #fff;
            font-family: 'Cairo', 'Source Sans 3', sans-serif;
            font-size: 1rem;
            margin-bottom: 18px;
            border-bottom: 2px solid var(--sh-red);
            padding-bottom: 8px;
        }
        .site-footer ul { list-style: none; padding: 0; }
        .site-footer ul li { margin-bottom: 7px; }
        .site-footer ul li a { color: #8a96a4; font-size: 0.85rem; }
        .site-footer ul li a:hover { color: var(--sh-red); }
        .site-footer .footer-contact li {
            display: flex; gap: 10px; align-items: flex-start;
            font-size: 0.85rem; margin-bottom: 10px;
        }
        .site-footer .footer-contact i { color: var(--sh-red); margin-top: 3px; }
        .footer-bottom {
            background: #0a0e14;
            color: #555e6a;
            font-size: 0.8rem;
            padding: 14px 0;
            margin-top: 40px;
            border-top: 1px solid #1c2430;
        }
        .social-links a {
            display: inline-flex; align-items: center; justify-content: center;
            width: 34px; height: 34px;
            background: #1c2430;
            color: #8a96a4;
            border-radius: 50%;
            margin-right: 6px;
            font-size: 0.85rem;
            transition: background 0.2s, color 0.2s;
        }
        .social-links a:hover { background: var(--sh-red); color: #fff; }

        /* ── BUTTONS ─────────────────────────────────── */
        .btn-sheikan-primary {
            background: var(--sh-red);
            color: #fff;
            border: none;
            border-radius: 2px;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 22px;
            letter-spacing: 0.3px;
        }
        .btn-sheikan-primary:hover { background: var(--sh-red-dark); color: #fff; }
        .btn-sheikan-outline {
            border: 2px solid var(--sh-blue-mid);
            color: var(--sh-blue-mid);
            background: transparent;
            border-radius: 2px;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 7px 20px;
        }
        .btn-sheikan-outline:hover {
            background: var(--sh-blue-mid);
            color: #fff;
        }

        /* ── PAGE HERO ───────────────────────────────── */
        .page-hero {
            background: linear-gradient(135deg, var(--sh-blue) 0%, var(--sh-blue-mid) 100%);
            color: #fff;
            padding: 4px 0 3px;
            border-bottom: 0px solid var(--sh-red);
        }
        .page-hero h1 {
            font-size: 2rem;
            margin: 0;
            color: #fff;
        }
        .breadcrumb { margin: 0; background: transparent; padding: 6px 0 0; }
        .breadcrumb-item { font-size: 0.83rem; color: #a8c4e8; }
        .breadcrumb-item a { color: #a8c4e8; }
        .breadcrumb-item.active { color: #fff; }
        .breadcrumb-item + .breadcrumb-item::before { color: #5a7fa0; }

        /* ── UTILITIES ───────────────────────────────── */
        .section-pad { padding: 20px 0; }
        .bg-light-gray { background: var(--sh-gray-light); }
        .text-red { color: var(--sh-red) !important; }
        .text-blue { color: var(--sh-blue) !important; }
        .border-red { border-color: var(--sh-red) !important; }

        @media (max-width: 768px) {
            .hero-slider .carousel-item { height: 280px; }
            .hero-slider .carousel-caption h2 { font-size: 1.4rem; }
            .site-header .univ-name { font-size: 1.2rem; }
        }


.site-header .logo-wrap {
    background: #ffffff !important;
}

.site-header .logo-wrap img {
    background: #ffffff !important;
}

.logo-placeholder {
    background: #ffffff !important;
    color: #000070 !important;
}

.site-header .site-title,
.site-header .site-title small,
.site-header .brand-title,
.site-header .brand-text {
    color: #000070 !important;
}

/* Header logo / brand block */
.site-header,
.site-header .container,
.site-header .header-main,
.site-header .logo-area,
.site-header .brand-area,
.site-header .logo-wrap,
.site-header .site-title {
    background: #ffffff !important;
}

/* Logo image area */
.site-header .logo-wrap {
    background: #ffffff !important;
    border-radius: 6px;
    padding: 0px;
}

/* Site name text */
.site-header .site-title,
.site-header .site-title a,
.site-header .site-title h1,
.site-header .site-title h2,
.site-header .site-title small,
.site-header .brand-text,
.site-header .brand-title {
    color: #000070 !important;
}

/* Header links/icons if they appear inside the logo block */
.site-header a,
.site-header i {
    color: #000070 !important;
}

/* Logo text color */
.site-header .site-title,
.site-header .site-title a,
.site-header .site-title h1,
.site-header .site-title h2,
.site-header .site-title small,
.site-header .brand-text,
.site-header .brand-title {
    color: #cc0000 !important;
}

/* Global text and links */

/* Logo block only */
.site-header .logo-wrap,
.site-header .logo-wrap *,
.site-header .site-title,
.site-header .site-title *,
.site-header .brand-title,
.site-header .brand-text {
    background-color: #ffffff !important;
    color: #cc0000 !important;
}

/* Logo block links only */
.site-header .site-title a,
.site-header .brand-title a,
.site-header .brand-text a {
    color: #cc0000 !important;
}

/* Logo block links hover only */
.site-header .site-title a:hover,
.site-header .brand-title a:hover,
.site-header .brand-text a:hover {
    color: #0000cc !important;
}

/* Remove border/gap between menu and carousel */
.main-nav {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.main-nav + .hero-slider,
.main-nav + #heroCarousel,
.hero-slider,
#heroCarousel {
    margin-top: 0 !important;
    border-top: none !important;
}

/* Kordofan-like homepage carousel */
.hero-slider {
    margin: 0 !important;
    padding: 0 !important;
    background: #000;
}

.hero-slider .carousel-item {
    height: 470px;
    position: relative;
    background: #000;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-slider .slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.22) 45%,
        rgba(0, 0, 0, 0.08) 100%
    );
}

html[dir="rtl"] .hero-slider .slide-bg::after {
    background: linear-gradient(
        270deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.22) 45%,
        rgba(0, 0, 0, 0.08) 100%
    );
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    height: 470px;
    display: flex;
    align-items: center;
}

.hero-slider .slide-text-box {
    max-width: 650px;
    color: #fff;
    padding: 28px 34px;
    background: rgba(6, 76, 158, 0.30);
    border-right: 0px solid var(--sh-red);
    margin-bottom: -100px;
}

html[dir="rtl"] .hero-slider .slide-text-box {
    text-align: right;
    border-right: none;
    border-left: 0px solid var(--sh-red);
}

.hero-slider .slide-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-slider .slide-title {
    font-family: 'Cairo', 'Source Sans 3', sans-serif;
    font-size: 2.45rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #ffffff;
}

.hero-slider .slide-excerpt {
    color: #eef5ff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero-slider .carousel-indicators {
    margin-bottom: 18px;
}

.hero-slider .carousel-indicators button {
    width: 34px;
    height: 4px;
    background: #ffffff;
    opacity: 0.75;
}

.hero-slider .carousel-indicators button.active {
    background: var(--sh-red);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-slider .carousel-item,
    .hero-slider .slide-content {
        height: 330px;
    }

    .hero-slider .slide-text-box {
        padding: 0px 0px;
        max-width: 92%;
    }

    .hero-slider .slide-title {
        font-size: 1.45rem;
    }

    .hero-slider .slide-excerpt {
        font-size: 0.88rem;
    }
}


/* Slider title-only style */
.hero-slider .slider-title-only-box {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-slider .slider-title-only {
    margin-bottom: 28px;
}

.hero-slider .slide-bottom-link {
    margin-top: auto;
}

/* Move hero slider text to bottom */
.hero-slider .slide-content {
    align-items: flex-end !important;
    padding-bottom: 45px;
}

/* Keep text box at bottom */
.hero-slider .slide-text-box {
    margin-bottom: -30px;
}

/* Title-only box bottom layout */
.hero-slider .slider-title-only-box {
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Read More button under title */
.hero-slider .slide-bottom-link {
    margin-top: 18px;
}

/* Smooth fading carousel */
.hero-slider.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Move hero text to bottom */
.hero-slider .slide-content {
    align-items: flex-end !important;
    padding-bottom: 45px;
}

/* Title-only slider box */
.hero-slider .slider-title-only-box {
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-slider .slide-bottom-link {
    margin-top: 18px;
}

/* Arabic contact page RTL fix */
html[dir="rtl"] .contact-page-content,
html[dir="rtl"] .contact-page-content *,
html[dir="rtl"] .contact-info-box,
html[dir="rtl"] .contact-info-box * {
    direction: rtl !important;
    text-align: right !important;
}

html[dir="rtl"] .contact-page-content ul,
html[dir="rtl"] .contact-page-content ol {
    padding-right: 1.5rem !important;
    padding-left: 0 !important;
}

html[dir="rtl"] .contact-page-content table {
    direction: rtl !important;
    text-align: right !important;
}

html[dir="rtl"] .contact-page-content img {
    float: none !important;
}

/* Footer location map */
.footer-map {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000;
}

.footer-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.program-staff-section {
    background: #f8f9fa;
}

.staff-card .card {
    border-radius: 18px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.staff-card:hover .card {
    transform: translateY(-6px);
}

.staff-photo-wrapper {
    width: 150px;
    height: 150px;
    margin: 25px auto 10px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.staff-name {
    color: #064c9e;
    font-weight: 700;
    font-size: 18px;
}

.staff-position {
    color: #555;
    font-size: 14px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #7a2e31;
    border-radius: 50%;
    padding: 18px;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 10;
}

.hero-slider .slide-text-box {
    position: relative;
    z-index: 20;
}

.hero-slider .slide-bottom-link,
.hero-slider .slide-bottom-link a {
    position: relative;
    z-index: 30;
    pointer-events: auto;
}

.hero-slider .slide-bg,
.hero-slider .slide-bg::after {
    pointer-events: none;
}

.hero-slider .slide-bg,
.hero-slider .slide-bg::after {
    pointer-events: none !important;
}

.hero-slider .slide-content {
    position: relative !important;
    z-index: 20 !important;
}

.hero-slider .slide-text-box {
    position: relative !important;
    z-index: 30 !important;
}

.hero-slider .slide-bottom-link,
.hero-slider .slide-bottom-link a {
    position: relative !important;
    z-index: 40 !important;
    pointer-events: auto !important;
}

.hero-slider .slide-bg,
.hero-slider .slide-bg::after {
    pointer-events: none !important;
}

.hero-slider .slide-content,
.hero-slider .slide-text-box,
.hero-slider .slide-bottom-link,
.hero-slider .slide-read-more {
    position: relative !important;
    z-index: 999 !important;
    pointer-events: auto !important;
}

.slide-read-more {
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.slide-bottom-link {
    position: relative !important;
    z-index: 9999 !important;
}

.hero-slider .slide-bg,
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative !important;
    z-index: 50 !important;
}

.hero-slider .slide-content,
.hero-slider .slide-text-box,
.hero-slider .slide-bottom-link,
.hero-slider .slide-read-more {
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
}

.hero-slider .slide-bg,
.hero-slider .slide-bg::before,
.hero-slider .slide-bg::after,
.hero-slider .carousel-overlay {
    pointer-events: none !important;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 7% !important;
    z-index: 20 !important;
}

.hero-slider .carousel-caption,
.hero-slider .container.slide-content {
    pointer-events: auto !important;
}


.editable-page-section {
    background: #ffffff;
}

.editable-page-content {
    color: #333;
    font-size: 16px;
    line-height: 1.9;
}

.editable-page-content h1,
.editable-page-content h2,
.editable-page-content h3,
.editable-page-content h4 {
    color: #064c9e;
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 14px;
}

.editable-page-content p {
    margin-bottom: 16px;
}

.editable-page-content ul,
.editable-page-content ol {
    margin-bottom: 18px;
    padding-left: 24px;
}

.editable-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.editable-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.editable-page-content table th,
.editable-page-content table td {
    border: 1px solid #dee2e6;
    padding: 10px;
}

.editable-page-content table th {
    background: #064c9e;
    color: #ffffff;
}

html[dir="rtl"] .editable-page-content {
    text-align: right;
}

html[dir="rtl"] .editable-page-content ul,
html[dir="rtl"] .editable-page-content ol {
    padding-right: 24px;
    padding-left: 0;
}