﻿.icon {
    display: inline-block;
    color: #444444;
    width: 2em;
    height: 2em;
    fill: currentColor;
}

#numNotifications {
    position: absolute;
    bottom: 16px;
    left: 218px;
    color: white;
}

#notificationContainer {
    position: absolute;
    overflow-y: auto;
    padding-left: 1px;
    transform: scaleX(-1);
}
    
.inside {
    transform: scaleX(-1);
}

.notification {
    position: relative;
    width: 100%;
    border: 1px;
    border-style: solid;
    border-radius: 5px;
    padding: 9px;
    z-index: 1001;
    background-color: aliceblue;
    background: linear-gradient(to right, rgb(230, 242, 255), aliceblue, rgb(230, 242, 255));
}

.notificationUnread {
    background-color: aliceblue;
    background: linear-gradient(to right, rgb(230, 242, 255), aliceblue, rgb(230, 242, 255));
}

.notificationRead {
    background-color: transparent;
    background: none;
}
    
.notification p {
    margin: 0 0 5px;
}

.notification-text {
    position: relative;
    display: inline-block;
    width: 93%;
    border: 0;
}

.notification-toggle {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 5%;
    border: 0;
    vertical-align: top;
}

.notification-toggle a {
    cursor: pointer;
    text-decoration: none;
    color: mediumblue;
    position: relative;
    z-index: 2;
}

.notification-subject {
    font-weight: bold;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.notification-main-text {
    font-size: 12px;
}

.notification-time {
    font-style: italic;
    font-size: 12px;
}

.notification-link > a {
    color: mediumblue;
    position: relative;
    z-index: 2;
}

.badge {
    background-color: red;
}

#fileIcon, #numNotifications {
    cursor: pointer;
}

#fullNotification {
    display: block;
    border: solid 1px;
    background-color: white;
    z-index: 1001;
    max-width: 300px;
    max-height: 500px;
    overflow: hidden;
    margin-left: 40px;
    position: absolute;
}

.link-spanner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}