@charset "UTF-8";



/* for user dashboard*/
.page_with_dashboard {
    display: flex;
}
.sidebar {
    width: 250px;
    background: #343a40;
    padding: 15px;
    color: white;
}
.sidebar a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}
.sidebar a:hover {
    background: #495057;
    border-radius: 5px;
} 


/* for form errors*/
.errorlist {
    margin: 0.275rem;
    list-style-type: none;  /* Removes the bullet points */
    padding: 0.4rem !important;
    color: #842029;;
    font-size: 0.875em;
    background-color:  #f8d7da;
    border: 1px;
    border-radius: 0.375em;
}

.error-message {
    margin-bottom: 5px;
}