/* RTE Content Styles */

.umb-rte {
    /* Add any RTE-specific styles that aren't handled by Tailwind classes */
}

/* Add styles for elements that don't have corresponding Tailwind classes */
.umb-rte ul, .umb-rte ol {
    list-style-position: outside;
}

.umb-rte ul {
    list-style-type: disc;
}

.umb-rte ol {
    list-style-type: decimal;
}

.umb-rte li[style*="text-align: left"] {
    direction: ltr;
}

.umb-rte li[style*="text-align: right"] {
    direction: rtl;
}

.umb-rte a {
    text-decoration: underline; 
}

.umb-rte img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

/* Table Styles */
.umb-rte table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1.5rem;
    direction: ltr;
    /* background-color: #EFE8DE; // nav-beige */
}

.umb-rte th,
.umb-rte td {
    border: 1px solid #7E451C;
    padding: 0.75rem;
}

.umb-rte hr {
    margin: auto;
    margin-top: 3rem; /* mt-12 */
    border-color: #7E451C; /* border-main-brown */
    border-width: 2px; /* border-2 */
    border-radius: 9999px; /* rounded-full */
    margin-left: auto; /* mx-auto */
    margin-right: auto;
}
