.lrt-notification-container {
    position: fixed;
    top: 50px;
    right: 20px;
    width: 420px;
    max-width: 90vw;
    z-index: 2000;
    font-family: Arial, sans-serif;
}

.lrt-notification-panel {
    background: #ffffff;
    border: 1px solid #DBDBDB;
    box-shadow: 3px 3px 3px lightgray;
    font-family: Arial, sans-serif;
    overflow: hidden;
    border-radius: 4px;
}

.lrt-notification-header {
    background: #FAFAFA;
    border-bottom: 1px solid #E5E5E5;
    color: #777777;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lrt-notification-header h5 {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    color: #777777;
    padding: 0;
}

.lrt-notification-header-actions {
    margin: 0;
}

.Btn-Notification {
    background-image: url('/images/misc/bkGray.png');
    background-repeat: repeat-x;
    border: 1px solid #DBDBDB;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 5px 30px;
    user-select: none;
    color: #333333;
}

.Btn-Notification:hover {
    background-color: #f6f6f6;
    border-color: #c0c0c0;
}

.lrt-notification-items {
    max-height: 450px;
    overflow-y: auto;
    background: #ffffff;
}

.lrt-notification-item {
    padding: 12px;
    border-bottom: 1px solid #DBDBDB;
    background: white;
    position: relative;
}

.lrt-notification-item:hover {
    background: #f5f5f5;
}

.lrt-notification-item:last-child {
    border-bottom: none;
}

.lrt-notification-item-success {
    border-left: 3px solid #008000;
    background: #f0fff0;
}

.lrt-notification-item-success::before {
    content: '\2713';
    position: absolute;
    left: 6px;
    top: 12px;
    color: #008000;
    font-weight: bold;
    font-size: 12px;
}

.lrt-notification-content {
    margin-bottom: 8px;
    margin-left: 18px;
}

.lrt-notification-message {
    font-size: 12px;
    color: #333333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.lrt-notification-meta {
    font-size: 11px;
    color: #666666;
    display: flex;
    gap: 12px;
    align-items: center;
}

.lrt-notification-date {
    font-weight: normal;
}

.lrt-notification-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-left: 18px;
    margin-top: 6px;
}

.lrt-download-btn {
    background-color: #e8f4e8;
    border-color: #90c090;
    color: #006600;
}

.lrt-download-btn:hover {
    background-color: #d0e8d0;
    border-color: #70a070;
}

.lrt-acknowledge-btn {
    background-color: #f0f0f0;
    border-color: #DBDBDB;
    color: #333333;
}

.lrt-acknowledge-btn:hover {
    background-color: #e8e8e8;
    border-color: #c0c0c0;
}

@media (max-width: 768px) {
    .lrt-notification-container {
        position: fixed;
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
    }
}
