/* @title Success Message */
/* @help When a new Guestbook entry is posted successfully, the success message will be shown - this class controls how the success message looks */
#guestbook_success {
    background-color: #CCFF99;
    color: #000000;
    padding: 6px;
    padding-left: 12px;
    border-radius: 3px;
    margin: 12px;
}

/* @title Error Message */
/* @help When an error is encountered posting a new Guestbook entry, this class controls how the error message looks */
#guestbook_notice {
    background-color: #FFCC00;
    color: #000000;
    padding: 6px;
    padding-left: 12px;
    border-radius: 3px;
    margin-bottom: 6px;
}