/* Dropdown Styles */
.rt-notifications-dropdown-container {
    position: relative;
    display: inline-block;
}

.rt-notifications-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
}

.rt-notifications-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 300px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 9999;
    border-radius: 4px;
    overflow: hidden;
}

.rt-notifications-menu.show {
    display: block;
}

.rt-notifications-header {
    padding: 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.rt-notifications-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.rt-notification-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.rt-notification-item.level-info { border-left: 4px solid #17a2b8; }
.rt-notification-item.level-warning { border-left: 4px solid #ffc107; background: #fffdf5; }
.rt-notification-item.level-critical { border-left: 4px solid #dc3545; background: #fff5f5; }

.rt-notif-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.rt-notif-message {
    color: #666;
    margin-bottom: 5px;
}

.rt-notif-actions {
    text-align: right;
}

.rt-mark-read-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 11px;
    padding: 0;
}

.rt-mark-read-btn:hover {
    text-decoration: underline;
}

.rt-notifications-empty {
    padding: 20px;
    text-align: center;
    color: #999;
}

.rt-notifications-footer {
    padding: 8px;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Toaster Styles */
.rt-toaster-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rt-toaster {
    background: #fff;
    border-left: 4px solid #007bff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    width: 300px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    overflow: hidden;
}

.rt-toaster.show {
    opacity: 1;
    transform: translateX(0);
}

.rt-toaster-header {
    padding: 10px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rt-toaster-title {
    font-size: 14px;
    margin: 0;
}

.rt-toaster-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
}

.rt-toaster-close:hover {
    color: #333;
}

.rt-toaster-body {
    padding: 15px;
    font-size: 13px;
    color: #444;
}

.rt-toaster.level-info { border-left-color: #17a2b8; }
.rt-toaster.level-warning { border-left-color: #ffc107; }
.rt-toaster.level-critical { border-left-color: #dc3545; }
