/* unified_tender_cards.css */
.tender-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}
.tender-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}
.tender-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.tender-time-left {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.tender-time-left.active {
    background: #d4edda;
    color: #155724;
}
.tender-time-left.expired {
    background: #f8f9fa;
    color: #6c757d;
}
.tender-time-left.ending-soon {
    background: #fff3cd;
    color: #856404;
    animation: pulse 2s infinite;
}
/* Zobacz pełną wersję w dokumentach - tu skrócone dla przejrzystości */
