.tender-view { background-color: #F8F9FA; font-family: 'Inter', sans-serif; color: #111827; padding: 80px 0; min-height: 80vh; }
.tender-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.tender-header { text-align: center; margin-bottom: 40px; }
.tender-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.tender-header p { color: #6B7280; max-width: 700px; margin: 0 auto; font-size: 16px; line-height: 1.5; }

.tender-info-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 14px; color: #6B7280; }
.active-count span { color: #2563EB; font-weight: 600; }

.tender-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
@media (max-width: 992px) { .tender-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .tender-grid { grid-template-columns: 1fr; } }

.tender-card { background: #FFFFFF; border-radius: 16px; padding: 24px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: all 0.2s ease; display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.tender-card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

.card-header-tender { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.card-tag { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; color: white; }

.bg-black { background-color: #000; }
.bg-orange-600 { background-color: #ea580c; }
.bg-gray-700 { background-color: #374151; }

.card-timer { display: flex; align-items: center; gap: 6px; color: #DC2626; font-size: 13px; font-weight: 500; }

.card-body h3 { font-size: 16px; font-weight: 700; margin: 0 0 12px 0; line-height: 1.4; min-height: 44px; }
.card-body p { font-size: 13px; color: #6B7280; line-height: 1.5; margin-bottom: 24px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid #F3F4F6; margin-top: auto; }
.card-price { font-weight: 700; font-size: 15px; color: #111827; }
.card-date { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #9CA3AF; }

/* tabs */
.process-section { background: #FFFFFF; border-radius: 20px; padding: 40px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.process-tabs { background-color: #F3F4F6; display: inline-flex; padding: 4px; border-radius: 12px; margin-bottom: 32px; }
.process-tab-btn { border: none; background: transparent; padding: 10px 20px; font-size: 14px; font-weight: 500; color: #6B7280; cursor: pointer; border-radius: 8px; }
.process-tab-btn.active { background-color: #FFFFFF; color: #111827; box-shadow: 0 1px 3px rgba(0,0,0,0.1); font-weight: 600; }
.process-steps h2 { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.step-item { margin-bottom: 24px; }
.step-title { font-weight: 700; margin-bottom: 4px; color: #111827; }
.step-desc { font-size: 14px; color: #6B7280; line-height: 1.5; }
.process-alert { background-color: #EFF6FF; border-radius: 8px; padding: 16px; color: #1E40AF; font-size: 14px; margin-top: 30px; border-left: 4px solid #3B82F6; }
