﻿/* BuyersDetails.aspx page styles - extracted from inline */
.buyers-noaccess {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
        }

        .buyers-noaccess .bg-text {
            position: static;
            transform: none;
            width: 100%;
            max-width: 640px;
            padding: 0 12px;
        }

        .buyers-noaccess-image {
            width: min(520px, 100%);
            height: auto;
        }

/* Second inline block */
.tnd-details {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            padding: 6px;
            border: 1px solid #e9e9e9;
            border-radius: 12px;
            background: #fff;
        }

        .tnd-details__item {
            flex: 1 1 240px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 5px 6px;
            border-radius: 10px;
            background: #fafafa;
            border: 1px solid #f0f0f0;
        }

        .tnd-details__icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: #fff;
            border: 1px solid #eee;
        }

            .tnd-details__icon i {
                font-size: 16px;
            }

        .tnd-details__content {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            min-width: 0;
        }

        .tnd-details__label {
            font-size: 12px;
            opacity: .75;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .tnd-details__value {
            font-size: 14px;
            font-weight: 600;
            margin-top: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Optional: if page is RTL */
        [dir="rtl"] .tnd-details {
            direction: rtl;
        }

        /* Tenders title live icon */
        .tenders-titlebar {
            position: relative;
        }

        .tenders-titlebar > * {
            position: relative;
            z-index: 1;
        }

        .tenders-title-icon {
       
            z-index: 0;
     
        }




        .tenders-live-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #2e8795;
            position: relative;
            display: inline-block;
            animation: tenders-live-pulse 2.6s ease-out infinite;
        }

      .tenders-update-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280; /* soft gray */
    font-weight: 400;
    line-height: 1.4;
}

.tenders-update-text i {
    font-size: 12px;
    color: #9ca3af; /* lighter gray for icon */
}

#tendersLastUpdated {
    font-weight: 500;
    color: #757575; /* slightly darker for emphasis */
}
.tenders-update-text {
    font-family: "Cairo", "Noto Kufi Arabic", system-ui, sans-serif;
}

        @keyframes tenders-live-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(46, 135, 149, 0.45);
                transform: scale(1);
                opacity: 1;
            }
            65% {
                box-shadow: 0 0 0 6px rgba(46, 135, 149, 0);
                transform: scale(1.03);
                opacity: 1;
            }
            100% {
                box-shadow: 0 0 0 6px rgba(46, 135, 149, 0);
                transform: scale(1);
                opacity: 1;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .tenders-live-dot {
                animation: none;
            }
        }
