/**
 * LMS Plugin Styles
 * Optional styling - you can customize as needed
 */

/* Error messages */
.lms-error {
    color: #d63638;
    background-color: #fcf0f1;
    border-left: 4px solid #d63638;
    padding: 12px;
    margin: 16px 0;
}

/* Basic button styling (if needed) - your side_nav class will override this */
a.lms-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

a.lms-button:hover {
    background-color: #005177;
    color: #ffffff;
}

a.lms-button:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}
