<style>
.text-divider {
    display: flex;
    justify-content: center;
    align-items: center;
     background-color: #f0f0f0; /* default background color */
    background-color: lightblue; /* background color changed to light blue */
    border-top: 1px solid black; /* added 1px black border at the top */
    border-bottom: 1px solid black; /* added 1px black border at the bottom */
    padding: 20px 0; /* default spacing above and below */
    
    
 background-color: #4c7297;
border-width: 1px;
border-color: #255F85;
box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);

}

.text-divider-content {
    color: #333; /* default text color */
    font-style: normal; /* default text style */
    font-size: 1.5em; /* default font size */
    font-family: Arial, sans-serif; /* default font family */
    padding: 0 10px;
    text-align: center; /* center the text horizontally */
}
</style> 