/* ========================================
   NEW LABEL – Standalone & Reusable
   ======================================== */

.new-label {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 70px;
    height: 30px;
    background-color: #029FAE;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    z-index: 10;
    transition: all 0.3s ease;
}



/* Optional: Pulse animation for new items */
.new-label.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .new-label {
        background-color: #00d46a;
        box-shadow: 0 0 8px rgba(0, 212, 106, 0.4);
    }
}


.share-btn {
    width: 40px;
    height: 40px;
    background: #FAFAFA;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.share-btn:hover {
    background: #B7F0F3;
}

.share-icon {
    font-size: 18px;
    color: #029FAE;   /* Your color */
    cursor: pointer;
    transition: 0.2s ease;
}