/* =========================================================
   SongDrop Notifications v1
   Zentraler Nav-Dropdown + eigene Übersicht.
   ========================================================= */

.songdrop-top-nav__links {
    position: relative;
}

.songdrop-notifications {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.songdrop-notification-toggle {
    position: relative;
    min-width: 42px;
    min-height: 42px;
    display: inline-grid;
    place-items: center;
    padding: 0 12px;
    color: rgba(238, 248, 255, .82);
    border: 1px solid rgba(117, 224, 255, .15);
    border-radius: 999px;
    background: rgba(0, 217, 255, .055);
    cursor: pointer;
    font: inherit;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.songdrop-notification-toggle:hover,
.songdrop-notification-toggle:focus-visible,
.songdrop-notifications.is-open .songdrop-notification-toggle {
    color: #eafcff;
    border-color: rgba(0, 217, 255, .42);
    background: rgba(0, 217, 255, .12);
    box-shadow: 0 0 20px rgba(0, 217, 255, .10);
    outline: none;
}

.songdrop-notification-toggle:hover {
    transform: translateY(-1px);
}

.songdrop-notification-toggle__icon {
    font-size: 21px;
    font-weight: 950;
    line-height: 1;
    transform: rotate(-16deg);
}

.songdrop-notification-toggle__count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    color: #001d15;
    border: 2px solid rgba(1, 8, 16, .96);
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 16px rgba(34, 255, 154, .42);
    font-size: 9px;
    font-weight: 950;
    line-height: 1;
}

.songdrop-notification-dropdown {
    position: absolute;
    top: calc(100% + 13px);
    right: 0;
    z-index: 9200;
    width: min(388px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid rgba(117, 224, 255, .20);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, rgba(34, 255, 154, .10), transparent 38%),
        linear-gradient(160deg, rgba(5, 20, 36, .98), rgba(2, 10, 19, .98));
    box-shadow: 0 28px 70px rgba(0, 0, 0, .52), 0 0 30px rgba(0, 217, 255, .08);
}

.songdrop-notification-dropdown[hidden] {
    display: none;
}

.songdrop-notification-dropdown__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(117, 224, 255, .12);
}

.songdrop-notification-dropdown__head > div {
    display: grid;
    gap: 4px;
}

.songdrop-notification-dropdown__head p {
    margin: 0;
    color: #effaff;
    font-size: 14px;
    font-weight: 950;
}

.songdrop-notification-dropdown__head span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.songdrop-notification-dropdown__mark-all {
    min-height: 30px;
    padding: 0 10px;
    color: #acffd5;
    border: 1px solid rgba(34, 255, 154, .22);
    border-radius: 9px;
    background: rgba(34, 255, 154, .07);
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.songdrop-notification-dropdown__mark-all:hover:not(:disabled) {
    color: #001c14;
    border-color: transparent;
    background: var(--green);
}

.songdrop-notification-dropdown__mark-all:disabled {
    cursor: default;
    opacity: .45;
}

.songdrop-notification-dropdown__list {
    display: grid;
    max-height: 390px;
    overflow-y: auto;
    padding: 7px;
}

.songdrop-notification-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 11px;
    border: 1px solid transparent;
    border-radius: 13px;
    color: #ecfaff;
    text-decoration: none;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.songdrop-notification-item:hover {
    transform: translateX(2px);
    border-color: rgba(117, 224, 255, .17);
    background: rgba(0, 217, 255, .055);
}

.songdrop-notification-item.is-unread {
    border-color: rgba(34, 255, 154, .16);
    background: linear-gradient(90deg, rgba(34, 255, 154, .075), rgba(0, 217, 255, .035));
}

.songdrop-notification-item__icon,
.songdrop-notification-card__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #00251a;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 7px 16px rgba(0, 217, 255, .14);
    font-size: 16px;
    font-weight: 950;
}

.songdrop-notification-item__copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.songdrop-notification-item__copy strong,
.songdrop-notification-item__copy span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.songdrop-notification-item__copy strong {
    color: #effaff;
    font-size: 11px;
    font-weight: 900;
}

.songdrop-notification-item__copy span {
    color: #91acb9;
    font-size: 10px;
    font-weight: 700;
}

.songdrop-notification-item__copy small {
    color: #6f96a5;
    font-size: 9px;
    font-weight: 800;
}

.songdrop-notification-item__state {
    color: var(--green);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.songdrop-notification-dropdown__empty {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 28px 18px;
    color: var(--muted);
    text-align: center;
}

.songdrop-notification-dropdown__empty b {
    color: #dff8ff;
    font-size: 12px;
}

.songdrop-notification-dropdown__empty span {
    max-width: 260px;
    font-size: 10px;
    line-height: 1.5;
}

.songdrop-notification-dropdown__foot {
    display: flex;
    justify-content: center;
    padding: 11px 14px 14px;
    border-top: 1px solid rgba(117, 224, 255, .10);
}

.songdrop-notification-dropdown__foot a {
    min-height: auto !important;
    padding: 0 !important;
    color: var(--cyan) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 10px !important;
    letter-spacing: .10em !important;
}

.songdrop-notifications-page {
    display: grid;
    gap: 22px;
}

.songdrop-notifications-hero,
.songdrop-notifications-toolbar,
.songdrop-notifications-empty,
.songdrop-notifications-system-notice,
.songdrop-notifications-list {
    border: 1px solid rgba(117, 224, 255, .17);
    border-radius: 28px;
    background:
        radial-gradient(circle at 0 0, rgba(0, 217, 255, .10), transparent 35%),
        radial-gradient(circle at 100% 0, rgba(34, 255, 154, .08), transparent 34%),
        rgba(3, 14, 27, .78);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .17);
}

.songdrop-notifications-hero {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 220px;
    padding: clamp(24px, 4vw, 42px);
}

.songdrop-notifications-hero__icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    color: #001e16;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 16px 34px rgba(0, 217, 255, .16);
    font-size: 36px;
    font-weight: 950;
}

.songdrop-notifications-eyebrow {
    margin: 0 0 11px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.songdrop-notifications-hero h1 {
    margin: 0 0 12px;
    color: #f2fbff;
    font-size: clamp(34px, 5.6vw, 64px);
    line-height: .95;
    letter-spacing: -.065em;
}

.songdrop-notifications-hero h1 span {
    color: var(--green);
}

.songdrop-notifications-hero p:not(.songdrop-notifications-eyebrow) {
    max-width: 670px;
    margin: 0;
    color: #adc7d4;
    line-height: 1.65;
}

.songdrop-notifications-hero__count {
    min-width: 132px;
    display: grid;
    gap: 5px;
    padding: 17px;
    border: 1px solid rgba(34, 255, 154, .22);
    border-radius: 20px;
    background: rgba(34, 255, 154, .06);
}

.songdrop-notifications-hero__count span,
.songdrop-notifications-hero__count small {
    color: #9ab4c0;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.songdrop-notifications-hero__count strong {
    color: var(--green);
    font-size: 38px;
    line-height: 1;
}

.songdrop-notifications-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
}

.songdrop-notifications-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.songdrop-notifications-filters a,
.songdrop-notifications-mark-all,
.songdrop-notifications-empty a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    color: #c6e5f1;
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 13px;
    background: rgba(0, 217, 255, .05);
    text-decoration: none;
    font: inherit;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
    cursor: pointer;
}

.songdrop-notifications-filters a b {
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: #baffdf;
    border-radius: 6px;
    background: rgba(34, 255, 154, .12);
    font-size: 9px;
}

.songdrop-notifications-filters a.is-active,
.songdrop-notifications-mark-all {
    color: #001d15;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 10px 22px rgba(34, 255, 154, .12);
}

.songdrop-notifications-mark-all:disabled {
    cursor: default;
    opacity: .48;
    box-shadow: none;
}

.songdrop-notifications-list {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.songdrop-notification-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    min-height: 78px;
    padding: 14px;
    border: 1px solid rgba(117, 224, 255, .11);
    border-radius: 18px;
    color: #edfaff;
    background: rgba(1, 8, 16, .42);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.songdrop-notification-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 217, 255, .32);
    background: rgba(0, 217, 255, .065);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.songdrop-notification-card.is-unread {
    border-color: rgba(34, 255, 154, .22);
    background: linear-gradient(90deg, rgba(34, 255, 154, .075), rgba(0, 217, 255, .045));
}

.songdrop-notification-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 22px;
}

.songdrop-notification-card__body {
    display: grid;
    min-width: 0;
    gap: 5px;
}

.songdrop-notification-card__body strong,
.songdrop-notification-card__body > span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.songdrop-notification-card__body strong {
    font-size: 14px;
    font-weight: 950;
}

.songdrop-notification-card__body > span {
    color: #a3c0cc;
    font-size: 12px;
    font-weight: 750;
}

.songdrop-notification-card__body small {
    color: #7195a3;
    font-size: 10px;
    font-weight: 850;
}

.songdrop-notification-card__state {
    min-width: 46px;
    min-height: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--green);
    border: 1px solid rgba(34, 255, 154, .20);
    border-radius: 9px;
    background: rgba(34, 255, 154, .06);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.songdrop-notification-card.is-read .songdrop-notification-card__state {
    color: #92b4c0;
    border-color: rgba(117, 224, 255, .13);
    background: rgba(117, 224, 255, .04);
}

.songdrop-notifications-empty {
    min-height: 330px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 12px;
    padding: 30px;
    text-align: center;
}

.songdrop-notifications-empty__orb {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    color: #001f17;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--cyan), var(--green));
    box-shadow: 0 0 36px rgba(0, 217, 255, .22);
    font-size: 34px;
    font-weight: 950;
}

.songdrop-notifications-empty h2 {
    margin: 4px 0 0;
    color: #f1fbff;
    font-size: 28px;
}

.songdrop-notifications-empty p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.songdrop-notifications-empty a {
    margin-top: 8px;
    color: #001d15;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.songdrop-notifications-system-notice {
    display: flex;
    align-items: center;
    padding: 20px 22px;
    border-color: rgba(255, 213, 74, .24);
    background: rgba(255, 213, 74, .055);
}

.songdrop-notifications-system-notice div {
    display: grid;
    gap: 7px;
}

.songdrop-notifications-system-notice b {
    color: #ffe59a;
    font-size: 14px;
}

.songdrop-notifications-system-notice span {
    color: #d2c19a;
    font-size: 12px;
    line-height: 1.55;
}

.songdrop-notifications-system-notice code {
    color: #effcff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

@media (max-width: 860px) {
    .songdrop-notification-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .songdrop-notifications-hero {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .songdrop-notifications-hero__count {
        grid-column: 1 / -1;
        width: 100%;
        grid-template-columns: auto auto 1fr;
        align-items: center;
    }

    .songdrop-notifications-hero__count strong {
        font-size: 30px;
    }
}

@media (max-width: 620px) {
    .songdrop-top-nav__links {
        gap: 6px;
    }

    .songdrop-notification-toggle {
        min-width: 36px;
        min-height: 36px;
        padding: 0 10px;
    }

    .songdrop-notification-dropdown {
        width: min(360px, calc(100vw - 20px));
    }

    .songdrop-notifications-hero {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px;
    }

    .songdrop-notifications-hero__icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
        font-size: 28px;
    }

    .songdrop-notifications-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .songdrop-notifications-filters,
    .songdrop-notifications-filters a,
    .songdrop-notifications-mark-all {
        width: 100%;
    }

    .songdrop-notifications-filters a {
        flex: 1;
    }

    .songdrop-notification-card {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .songdrop-notification-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 19px;
    }

    .songdrop-notification-card__state {
        display: none;
    }
}


/* =========================================================
   SongDrop Notifications UI V2
   Klarere Inbox-Cards in Navigation + persönliche Ausblendung
   ========================================================= */

/* Die globale Nav-Regel formatiert alle Links groß/mit viel Spacing.
   Für echte Notifications wird das hier bewusst neutralisiert. */
.songdrop-notification-dropdown a.songdrop-notification-item {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) 8px;
    align-items: center;
    gap: 11px;
    margin: 0;
    padding: 11px 10px !important;
    color: #ecfaff !important;
    border: 1px solid transparent !important;
    border-radius: 14px !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: normal !important;
    line-height: normal !important;
    text-transform: none !important;
    transform: none !important;
}

.songdrop-notification-dropdown {
    width: min(414px, calc(100vw - 28px));
    border-radius: 22px;
}

.songdrop-notification-dropdown__head {
    padding: 17px 17px 13px;
}

.songdrop-notification-dropdown__head p {
    letter-spacing: -.015em;
}

.songdrop-notification-dropdown__head span {
    color: #86a5b3;
}

.songdrop-notification-dropdown__list {
    gap: 4px;
    max-height: 438px;
    padding: 8px;
}

.songdrop-notification-dropdown a.songdrop-notification-item:hover,
.songdrop-notification-dropdown a.songdrop-notification-item:focus-visible {
    color: #fff !important;
    border-color: rgba(0, 217, 255, .22) !important;
    background:
        linear-gradient(90deg, rgba(0, 217, 255, .085), rgba(34, 255, 154, .045)) !important;
    transform: translateX(2px) !important;
    outline: none;
}

.songdrop-notification-dropdown a.songdrop-notification-item.is-unread {
    border-color: rgba(34, 255, 154, .19) !important;
    background:
        radial-gradient(circle at 0 50%, rgba(34, 255, 154, .11), transparent 58%),
        linear-gradient(90deg, rgba(34, 255, 154, .055), rgba(0, 217, 255, .030)) !important;
}

.songdrop-notification-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 17px;
}

.songdrop-notification-item__copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.songdrop-notification-item__meta,
.songdrop-notification-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.songdrop-notification-item__meta em,
.songdrop-notification-card__meta em {
    overflow: hidden;
    color: var(--green);
    font-size: 8px;
    font-weight: 950;
    font-style: normal;
    letter-spacing: .11em;
    line-height: 1.1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.songdrop-notification-item__meta small,
.songdrop-notification-card__meta small {
    flex: 0 0 auto;
    color: #718f9d;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: none;
}

.songdrop-notification-item__copy strong,
.songdrop-notification-item__copy .songdrop-notification-item__message {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    text-overflow: clip;
    -webkit-box-orient: vertical;
}

.songdrop-notification-item__copy strong {
    color: #f1fbff;
    font-size: 11px;
    font-weight: 950;
    line-height: 1.28;
    letter-spacing: -.005em;
    -webkit-line-clamp: 2;
}

.songdrop-notification-item__copy .songdrop-notification-item__message {
    color: #91aebb;
    font-size: 10px;
    font-weight: 720;
    line-height: 1.35;
    letter-spacing: 0;
    -webkit-line-clamp: 2;
}

.songdrop-notification-item__state,
.songdrop-notification-card__state {
    width: 8px;
    min-width: 8px;
    min-height: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(117, 224, 255, .22);
    box-shadow: none;
    font-size: 0;
}

.songdrop-notification-item.is-unread .songdrop-notification-item__state,
.songdrop-notification-card.is-unread .songdrop-notification-card__state {
    background: var(--green);
    box-shadow: 0 0 12px rgba(34, 255, 154, .70);
}

.songdrop-notification-dropdown__foot {
    padding: 12px 14px 15px;
}

.songdrop-notification-dropdown__foot a {
    color: #75ecff !important;
}

/* Übersicht: Die komplette Zeile bleibt klickbar, der eigene Button blendet
   nur für den Empfänger aus und verändert keine Daten anderer Personen. */
.songdrop-notifications-list {
    gap: 11px;
}

.songdrop-notification-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 88px;
    padding: 0;
    overflow: hidden;
}

.songdrop-notification-card__open {
    min-width: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 9px;
    align-items: center;
    gap: 15px;
    padding: 15px 14px 15px 15px;
    color: #edfaff;
    text-decoration: none;
}

.songdrop-notification-card__open:hover,
.songdrop-notification-card__open:focus-visible {
    color: #fff;
    outline: none;
}

.songdrop-notification-card__body {
    gap: 4px;
}

.songdrop-notification-card__body strong,
.songdrop-notification-card__message {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    text-overflow: clip;
    -webkit-box-orient: vertical;
}

.songdrop-notification-card__body strong {
    font-size: 14px;
    line-height: 1.28;
    letter-spacing: -.01em;
    -webkit-line-clamp: 2;
}

.songdrop-notification-card__message {
    color: #a5c0cb;
    font-size: 12px;
    font-weight: 730;
    line-height: 1.45;
    -webkit-line-clamp: 2;
}

.songdrop-notification-card__hide {
    align-self: center;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 14px 0 0;
    padding: 0 10px;
    color: #8faab6;
    border: 1px solid rgba(117, 224, 255, .14);
    border-radius: 10px;
    background: rgba(1, 8, 16, .26);
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .075em;
    text-transform: uppercase;
    transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.songdrop-notification-card__hide span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.songdrop-notification-card__hide em {
    font-style: normal;
}

.songdrop-notification-card__hide:hover,
.songdrop-notification-card__hide:focus-visible {
    color: #ffd7e2;
    border-color: rgba(255, 75, 122, .35);
    background: rgba(255, 75, 122, .08);
    transform: translateY(-1px);
    outline: none;
}

.songdrop-notification-card__hide:disabled {
    cursor: wait;
    opacity: .58;
}

.songdrop-notification-card.is-hiding {
    pointer-events: none;
    animation: songdropNotificationHide .24s ease forwards;
}

@keyframes songdropNotificationHide {
    to {
        opacity: 0;
        transform: translateX(12px) scale(.985);
        max-height: 0;
        min-height: 0;
        margin: -5px 0;
    }
}

.songdrop-notifications-page .songdrop-notification-card.is-read {
    opacity: .82;
}

@media (max-width: 620px) {
    .songdrop-notification-dropdown {
        width: min(390px, calc(100vw - 18px));
    }

    .songdrop-notification-dropdown a.songdrop-notification-item {
        grid-template-columns: 38px minmax(0, 1fr) 8px;
        gap: 10px;
        padding: 10px 8px !important;
    }

    .songdrop-notification-item__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .songdrop-notification-card {
        grid-template-columns: minmax(0, 1fr) 40px;
    }

    .songdrop-notification-card__open {
        grid-template-columns: 42px minmax(0, 1fr) 7px;
        gap: 12px;
        padding: 14px 8px 14px 14px;
    }

    .songdrop-notification-card__icon {
        width: 42px;
        height: 42px;
    }

    .songdrop-notification-card__hide {
        width: 32px;
        min-height: 32px;
        margin-right: 9px;
        padding: 0;
    }

    .songdrop-notification-card__hide em {
        display: none;
    }
}
