﻿.notification-container {
    position: relative;
}

.notification-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.notification-badge {
    background-color: red;
    border-radius: 50%;
    color: white;
    /*font-size: 12px;*/
    font-weight: bold;
    /*min-width: 20px;*/
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 2px;
    padding-top: 2px;
    text-align: center;
    position: absolute;
    min-width: 15px;
    font-size: 8px;
    top: 8px;
    left: 18px;
}

.notification-dropdown {
    background-color: white;
    border: 1px solid gray;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
    max-height: 300px;
    overflow-y: auto;
    /*position: absolute;*/
    position: fixed;
    top: 50px;
    /*right: 0;*/
    right: 3%;
    width: 300px;
    z-index: 1;
}

.notification-header {
    background-color: #f6f6f6;
    border-bottom: 1px solid gray;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

.notification-list {
    padding: 10px;
}

.notification-item {
    display:table;
    border-bottom: 1px solid gray;
    padding: 10px;
    width: 100%;
}

.notification-icon {
    margin-right: 10px;
}

.notification-message {
    /*font-weight: bold;*/
    word-break: break-word;
}

.notification-time {
    color: gray;
    font-size: 12px;
    float: right;
}

.notification-view-all {
    background-color: #f6f6f6;
    border-top: 1px solid gray;
    color: blue;
    display: block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
}
