/* Milestone 11 notification inbox */
.m11-notification-shell {
    max-width: 1120px;
}
.m11-notification-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
}
.m11-notification-summary span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 8px;
    border: 1px solid var(--dq-line);
    border-radius: 6px;
    background: #fff;
    color: var(--dq-muted);
    font-size: 9px;
    font-weight: 750;
}
.notification-list {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--dq-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--dq-shadow);
}
.notification-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 74px;
    padding: 11px 13px 11px 16px;
    border: 0;
    border-bottom: 1px solid #eceff1;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}
.notification-card:last-child { border-bottom: 0; }
.notification-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
}
.notification-card.unread { background: #f8fbfb; }
.notification-card.unread::before { background: var(--dq-green); }
.notification-card p { margin: 2px 0; }
.notification-type {
    color: var(--dq-green-dark);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.notification-card > div:first-child > p:nth-child(2) {
    color: #313a40;
    font-size: 11px;
    line-height: 1.45;
}
.notification-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    white-space: nowrap;
}
.notification-actions form { margin: 0; }
.notification-actions .secondary-link,
.notification-actions .link-button {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    padding: 4px 7px;
    border-radius: 5px;
    font-size: 9px;
    text-decoration: none;
}
.notification-actions .secondary-link { background: #eef3fb; color: var(--dq-blue); }
.notification-actions .link-button { color: var(--dq-muted); }
.notification-actions .link-button:hover { background: #f1f3f5; }

@media (max-width: 700px) {
    .notification-card { grid-template-columns: 1fr; gap: 8px; }
    .notification-actions { justify-content: flex-start; }
}
