/* 
    MerchStudio version 0.01 - Core CSS File
    Copyright (c) 2025 Michael Lewis White and MerchStudio Inc.
    Common CSS (both admin and client side) for MerchStudio App
    @version common/css/notify.css - 0.01 - 06-18-2025 - totaltec
    
    # included by client/css_load.tpl, admin/css_load.tpl
*/
/*
 * MerchStudio Admin Notifications
 * Styles for the header notification bell and dropdown.
 */

.notification_bell {
    position: relative;
    margin-right: 10px;
}

.notification_count {
    position: absolute;
    top: -4px;
    right: -6px;
    background-color: var(--accent_red);
    color: #fff;
    border-radius: 50%;
    width: 19px;
    height: 19px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid var(--bg);
    text-align: center;
    line-height: 19px;
    padding-right: 1px;
}

.notification_list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 280px;
    max-width: 350px;
}

.notification_item {
    padding: 10px 15px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.notification_item:last-child {
    border-bottom: none;
}

.notification_item.type_danger {
    background-color: hsla(0, 80%, 50%, 0.1);
    font-weight: 500;
}

.notification_item.type_warning {
    background-color: hsla(45, 100%, 50%, 0.1);
}

.notification_item a {
    text-decoration: none;
    color: inherit;
}

.notification_item a:hover {
    text-decoration: underline;
}

button.dismiss_notification {
    background: none;
    border: none;
    color: var(--text);
    opacity: 0.5;
    cursor: pointer;
    font-size: 20px;
    padding: 0 5px;
}

button.dismiss_notification:hover {
    opacity: 1;
    color: var(--accent_red);
}