/* Preview Bullets Styles */
.preview-bullets-container {
    margin-bottom: 15px;
}

.preview-bullets {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.preview-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.preview-bullets li:before {
    content: "\e846"; /* Using the grade-two icon from fontello */
    font-family: "fontello" !important;
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50; /* Green color for the bullets */
}

/* Responsive styles */
@media (max-width: 767.98px) {
    .preview-bullets li {
        font-size: 13px;
        padding-left: 22px;
        margin-bottom: 6px;
    }
}
