/* Add this CSS to your stylesheet or in a <style> tag in your blade template */

/* Fix for displaying TinyMCE content with proper list styling */
.page-content {
    /* Ensure proper spacing and formatting */
    padding: 20px;
    margin: 0;
    background-color: #f4f4f4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    color: #333;
}

/* Unordered lists (bullet points) */
.page-content ul {
    list-style-type: disc !important;
    margin-left: 20px !important;
    padding-left: 20px !important;
    margin-bottom: 1em;
}

.page-content ul li {
    list-style-type: disc !important;
    margin-bottom: 0.5em;
    display: list-item !important;
}

/* Nested unordered lists */
.page-content ul ul {
    list-style-type: circle !important;
    margin-top: 0.5em;
}

.page-content ul ul ul {
    list-style-type: square !important;
}

/* Ordered lists (numbered) */
.page-content ol {
    list-style-type: decimal !important;
    margin-left: 20px !important;
    padding-left: 20px !important;
    margin-bottom: 1em;
}

.page-content ol li {
    list-style-type: decimal !important;
    margin-bottom: 0.5em;
    display: list-item !important;
}

/* Nested ordered lists */
.page-content ol ol {
    list-style-type: lower-alpha !important;
    margin-top: 0.5em;
}

.page-content ol ol ol {
    list-style-type: lower-roman !important;
}

/* Other TinyMCE content styling */
.page-content p {
    margin-bottom: 1em;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin-bottom: 0.5em;
    margin-top: 1em;
}

.page-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1em;
}

.page-content table td,
.page-content table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.page-content table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.page-content blockquote {
    border-left: 4px solid #ddd;
    padding-left: 1em;
    margin-left: 0;
    font-style: italic;
}

.page-content code {
    background-color: #f4f4f4;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: monospace;
}

.page-content pre {
    background-color: #f4f4f4;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
}

/* If you're using Bootstrap or another CSS framework that might be interfering */
.page-content ul,
.page-content ol {
    list-style: initial !important;
    list-style-position: inside !important;
}