#notification-card {
    width: 100%;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    background: #fff;
    overflow: hidden;
}
.notification-content {
    padding: 15px;
    max-height: 450px;
    overflow-y: auto;
    background: #fff;
    border-radius: 0 0 12px 12px;
}
#notification-bar {
    padding: 10px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
}

/* Single notification */
.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    border-radius: 6px;
    transition: background .2s ease;
}
.notification:hover { background: #f8f9fa; }
.notification a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
}
.notification a:hover { text-decoration: underline; }

/* Columns */
.notification .order-info { font-weight: 700; flex: 1.5; }
.notification .customer-info { flex: 2; text-align: left; white-space: nowrap; }
.notification .status-info { flex: 1.5; font-weight: 700; text-align: center; }
.notification .date-info { flex: 2; text-align: right; font-size: 12px; color: #666; }

/* Mobile */
@media (max-width: 576px) {
    .notification { flex-direction: column; align-items: flex-start; }
    .notification .order-info,
    .notification .customer-info,
    .notification .status-info,
    .notification .date-info {
        flex: unset;
        width: 100%;
        text-align: left !important;
        white-space: normal;
    }
}

.product-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    background: rgba(15, 23, 42, .22);
    backdrop-filter: blur(3px);
}

.zadatak-popup {
    width: min(420px, 100%);
    border-radius: 12px;
    animation: product-popup-enter .18s ease-out;
}

.product-popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    color: #0f766e;
    background: #ccfbf1;
}

.product-popup-title {
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.product-popup-description {
    color: #334155;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

@keyframes product-popup-enter {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .product-popup-overlay {
        align-items: flex-end;
        padding: 12px;
    }

    .zadatak-popup {
        border-radius: 12px;
    }
}
