/* Simple styles for notification button and dropdown */
.wpcn-wrap{
    position: fixed;
    right: 16px;
    bottom: 24px;
    z-index: 99999;
    font-family: sans-serif;
}
.wpcn-button{
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 32px;
    padding: 8px 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wpcn-badge{
    background: #e53935;
    color: #fff;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
}
.wpcn-dropdown{
    display: none;
    position: absolute;
    right: 0;
    bottom: 56px;
    width: 320px;
    max-height: 420px;
    overflow: auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(11,15,30,0.12);
}
.wpcn-dropdown[aria-hidden="false"]{
    display: block;
}
.wpcn-list{
    padding: 8px;
}
.wpcn-item{
    display: block;
    padding: 10px;
    border-bottom: 1px solid #f2f2f2;
    text-decoration: none;
    color: inherit;
}
.wpcn-item.unread{
    background: #f7fbff;
}
.wpcn-item-title{
    font-weight: 600;
    margin-bottom: 4px;
}
.wpcn-item-excerpt{
    font-size: 13px;
    color: #555;
}
.wpcn-item-time{
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}
.wpcn-empty{
    padding: 20px;
    text-align: center;
    color: #777;
}
.wpcn-footer{
    padding: 8px;
    border-top: 1px solid #f2f2f2;
    text-align: center;
}
.wpcn-mark{
    background: transparent;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-weight: 600;
}
@media (max-width: 480px){
    .wpcn-dropdown{ right: 8px; left: 8px; width: auto; bottom: 72px; }
}
