.apc-notifications-wrapper {
    position: relative;
    display: inline-block;
}

.apc-notification-icon {
    font-size: 20px;
    cursor: pointer;
    color: #333;
    position: relative;
}

.apc-notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apc-notifications-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.apc-notifications-dropdown.active {
    display: block;
}

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

.apc-notifications-title {
    font-weight: bold;
}

.apc-mark-all-read {
    font-size: 12px;
    color: #007bff;
    cursor: pointer;
}

.apc-mark-all-read:hover {
    text-decoration: underline;
}

.apc-notifications-list {
    max-height: 300px;
    overflow-y: auto;
}

.apc-notification-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.apc-notification-item:hover {
    background-color: #f9f9f9;
}

.apc-notification-message {
    font-size: 14px;
    margin-bottom: 5px;
}

.apc-notification-time {
    font-size: 12px;
    color: #777;
}

.apc-loading, .apc-no-notifications, .apc-error {
    padding: 20px;
    text-align: center;
    color: #777;
}

.apc-error {
    color: #e74c3c;
}