/*
 * Iframe content for the sidebar feature
 */

html, body {
    width:100%;
    height:100%;
    background-color: #333;
    color: #fff;
    word-wrap: break-word;
    margin: 0;
    background: url("../resources/sidebar-bg.jpg");
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

/* Styled scrollbar */
::-webkit-scrollbar {
    width: 7px;
    background: transparent;
    opacity: 0.7;
}

::-webkit-scrollbar-thumb {
    background: #00c160;
    border-radius: 4px;
    z-index: 2147483647;
}

.mess-sidebar-content {
    height: 100%;
    overflow-x: hidden;
    color: #faffe1;
    margin-right: 5px; /* Padding against the scrollbar. */
}
.mess-sidebar-content h1, .mess-sidebar-content h2, .mess-sidebar-content h3
{
    color: #00c160;
}

.footer {
    /*position:absolute;*/
    /*bottom: 0;*/
    /*width: 100%;*/
    padding: 0 0 5px 10px;
    font-size: 12px;
    letter-spacing: 2px;
}

.error-box {
    font-size: 16px;
    background-color: rgba(255, 0, 0, 0.4);
    color: #fff;
}

.success-box {
    font-size: 20px;
    background-color: rgba(0, 196, 0, 0.4);
    color: #fff;
}