.lc-notifications-dashboard {
    background: #505050;
    border: 1px solid #E2C48E;
    border-radius: 16px;
    padding: 16px;
    color: #C2C2C2;
}

.lc-notifications-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.lc-notifications-header h3 {
    margin: 0;
    color: #E2C48E;
    font-size: 20px;
    line-height: 1.3;
}

.lc-unread-badge {
    background: #E2C48E;
    color: #0B1014;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.lc-notifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(226, 196, 142, 0.2);
    border-radius: 12px;
    background: #0B1014;
    cursor: pointer;
    transition: .2s ease;
}

.lc-notification-item.unread {
    border-left: 4px solid #E2C48E;
    background: rgba(226, 196, 142, 0.06);
}

.lc-notification-icon {
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

.lc-notification-content {
    flex: 1 1 auto;
    min-width: 0;
}

.lc-notification-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.lc-notification-title strong {
    color: #E2C48E;
    font-size: 15px;
    line-height: 1.4;
}

.lc-new-label {
    background: #E2C48E;
    color: #0B1014;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 8px;
}

.lc-notification-message {
    color: #C2C2C2;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.lc-notification-meta {
    font-size: 12px;
    line-height: 1.4;
    color: #999;
}

.lc-notification-property {
    display: inline-block;
    margin-top: 4px;
}

.lc-notifications-empty,
.lc-notifications-error {
    padding: 14px;
    border-radius: 12px;
    background: #0B1014;
    border: 1px solid rgba(226, 196, 142, 0.2);
}

.lc-notifications-error a {
    color: #E2C48E;
    text-decoration: none;
}

.lc-notifications-error a:hover {
    text-decoration: underline;
}

/* tablet and up */
@media (min-width: 768px) {
    .lc-notifications-dashboard {
        padding: 24px;
    }

    .lc-notifications-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .lc-notification-item {
        padding: 16px;
        gap: 14px;
    }

    .lc-notification-title strong {
        font-size: 16px;
    }

    .lc-notification-message {
        font-size: 15px;
    }

    .lc-notification-property {
        margin-top: 0;
    }
}

/* desktop and up */
@media (min-width: 1024px) {
    .lc-notifications-dashboard {
        padding: 28px;
    }

    .lc-notifications-header h3 {
        font-size: 24px;
    }
}