/* #region Root Variables - Tailwind Slate Color System */

:root {
  /* Base slate colors */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  /* Primary colors */
  --primary-color: #3b82f6;
  --primary-hover: #2563eb;
  --primary-dark: #1d4ed8;
  
  /* Semantic colors */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #06b6d4;
  
  /* Text colors */
  --text-primary: var(--slate-900);
  --text-secondary: var(--slate-700);
  --text-muted: var(--slate-500);
  
  /* Background colors */
  --bg-primary: var(--slate-50);
  --bg-secondary: var(--slate-100);
  --bg-card: #ffffff;
  
  /* Border colors */
  --border-color: var(--slate-200);
  --border-hover: var(--slate-300);
  
  --transition-speed: 0.3s;
}


/* #endregion */

/* #region Main Container */

/* SPA Layout override - full width için */
.mdNavbarContainer {
  max-width: 1400px !important;
  width: 90% !important;
  margin: 0 auto !important;
}

.mdTenderDetailContainer {
  padding: 0.5rem 1rem 1rem 1rem;
  max-width: none !important;
  width: 100% !important;
  margin: 0 auto;
}

/* Hero Subtitle Style - Premium Design */
.mdHeadingSubtitle {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 0.8rem;
  font-weight: 700;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 32px;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.95) 0%, 
    rgba(168, 85, 247, 0.95) 30%, 
    rgba(236, 72, 153, 0.95) 70%, 
    rgba(219, 39, 119, 0.95) 100%
  );
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 12px 40px rgba(139, 92, 246, 0.4),
    0 6px 20px rgba(168, 85, 247, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: premiumGlow 3s ease-in-out infinite alternate;
  transition: all 0.4s ease;
}

.mdHeadingSubtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.8s ease;
}

.mdHeadingSubtitle:hover::before {
  left: 100%;
}

.mdHeadingSubtitle:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 16px 50px rgba(139, 92, 246, 0.5),
    0 8px 25px rgba(168, 85, 247, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

@keyframes premiumGlow {
  0%, 100% {
    box-shadow: 
      0 12px 40px rgba(139, 92, 246, 0.4),
      0 6px 20px rgba(168, 85, 247, 0.3),
      0 2px 8px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    box-shadow: 
      0 16px 60px rgba(139, 92, 246, 0.6),
      0 8px 30px rgba(168, 85, 247, 0.5),
      0 4px 16px rgba(236, 72, 153, 0.3),
      0 0 40px rgba(219, 39, 119, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}


/* #endregion */

/* Öğe Bulunamadı Mesajı Stilleri */
.mdNoItemsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  width: 100%;
}

.mdNoItemsMessage {
  background: var(--md-card-bg);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  animation: fadeInUp 0.6s ease-out;
  border: 1px solid var(--md-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mdNoItemsMessage:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mdNoItemsIcon {
  background: var(--md-primary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mdNoItemsIcon i {
  font-size: 2.5rem;
  color: white;
}

.mdNoItemsMessage h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--md-text-color);
}

.mdNoItemsMessage p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--md-text-secondary);
  line-height: 1.6;
}

.mdNoItemsButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--md-primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.mdNoItemsButton:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.mdNoItemsButton i {
  margin-right: 0.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* İhale Bilgi Kartları */
.mdInfoCardsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mdInfoCard {
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* İkon ve alt başlık stilleri */
.mdInfoCardIcon {
  display: flex;
  align-items: center;
}

.mdInfoCardIconText {
  font-size: 1em;
  font-weight: bold;
}

.mdInfoCardSubtitle {
  font-size: 0.5em;
  font-weight: 800;
}

/* Clean Tailwind-style card designs */
.mdInfoCard:nth-child(1) {
  border-left: 4px solid var(--primary-color);
}

.mdInfoCard:nth-child(2) {
  border-left: 4px solid #ec4899;
}

.mdInfoCard:nth-child(3) {
  border-left: 4px solid var(--success-color);
}

.mdInfoCard:nth-child(4) {
  border-left: 4px solid var(--warning-color);
}

.mdInfoCard::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

.mdInfoCard:nth-child(1)::before {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  top: -15px;
  right: -15px;
}

.mdInfoCard:nth-child(2)::before {
  background: linear-gradient(135deg, #ec4899, #f472b6);
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
}

.mdInfoCard:nth-child(3)::before {
  background: linear-gradient(135deg, #10b981, #34d399);
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}

.mdInfoCard:nth-child(4)::before {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  bottom: -10px;
  right: 15px;
  width: 60px;
  height: 60px;
}

/* İkinci konteyner kartları için dekoratif şekiller */
.mdInfoCardsContainer:nth-child(2) .mdInfoCard:nth-child(1)::before {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  top: -25px;
  left: -25px;
  width: 90px;
  height: 90px;
}

.mdInfoCardsContainer:nth-child(2) .mdInfoCard:nth-child(2)::before {
  background: linear-gradient(135deg, #ef4444, #f87171);
  bottom: -15px;
  right: -30px;
  width: 75px;
  height: 75px;
}

.mdInfoCardsContainer:nth-child(2) .mdInfoCard:nth-child(3)::before {
  background: linear-gradient(135deg, #06b6d4, #67e8f9);
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 65px;
}

.mdInfoCard:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.mdInfoCardIcon {
  font-size: 3rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mdInfoCardContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Total Amount Section stilleri */
.mdTotalAmountSection {
  margin-bottom: 2rem;
}

.mdSectionTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.mdSectionTitle i {
  margin-right: 10px;
  color: var(--primary-color);
}

/* Eski stiller kaldırıldı */
.mdInfoCardValueContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.mdInfoCardSeparator {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(71, 118, 230, 0.5), transparent);
  margin: 0 0.2rem;
}


.mdInfoCardTitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mdInfoCardValue {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.mdInfoCardValue.mdCurrencyValue {
  color: #1e293b;
  font-size: 1.4rem;
  font-weight: 800;
  position: relative;
}

@keyframes shimmer {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1.1); }
  100% { transform: scaleX(1); }
}

/* #region Skeleton Loading Styles */
.mdTenderDetailSkeletonContainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@keyframes skeletonPulse {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.mdTenderDetailSkeletonContainer [class*="mdSkeleton"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: skeletonPulse 1.5s infinite linear;
  border-radius: 8px;
}


/* Info Cards Skeleton */
.mdSkeletonInfoCardsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.mdSkeletonInfoCard {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


.mdSkeletonInfoCardIcon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.mdSkeletonInfoCardContent {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mdSkeletonInfoCardTitle {
  height: 16px;
  width: 60%;
}

.mdSkeletonInfoCardValue {
  height: 20px;
  width: 80%;
}

.mdSkeletonTotalCard .mdSkeletonCurrencyValues {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mdSkeletonCurrencyValue {
  height: 18px;
  width: 80px;
}

/* Big Countdown Skeleton */
.mdSkeletonCountdownSection {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.mdSkeletonBigCountdown {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.mdSkeletonCountdownLabel {
  height: 18px;
  width: 150px;
}

.mdSkeletonCountdownTime {
  height: 36px;
  width: 280px;
}

/* Tender Items Skeleton */
.mdSkeletonTenderItemsSection {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mdSkeletonSectionTitle {
  height: 28px;
  width: 200px;
  margin-bottom: 1rem;
}

.mdSkeletonTenderItemCard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}


.mdSkeletonTenderItemHeader {
  background: linear-gradient(90deg, #361877 0%, #111866 50%, #1b0942 100%);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mdSkeletonItemNameContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mdSkeletonItemNameHeader {
  height: 24px;
  width: 250px;
  background: rgba(255, 255, 255, 0.2) !important;
}

.mdSkeletonItemInfo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mdSkeletonItemNumber,
.mdSkeletonItemDescription {
  height: 16px;
  background: rgba(255, 255, 255, 0.2) !important;
}

.mdSkeletonItemNumber {
  width: 120px;
}

.mdSkeletonItemDescription {
  width: 200px;
}

.mdSkeletonOfferButton {
  height: 40px;
  width: 120px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2) !important;
}

/* Statistics Cards Skeleton */
.mdSkeletonStatsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 242, 245, 0.9) 100%);
}


.mdSkeletonStatCard {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}


.mdSkeletonStatIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.mdSkeletonStatContent {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.mdSkeletonStatTitle {
  height: 14px;
  width: 70%;
}

.mdSkeletonStatValue {
  height: 18px;
  width: 85%;
}

/* Item Details Skeleton */
.mdSkeletonItemBody {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 242, 245, 0.9) 100%);
}


.mdSkeletonItemDetails {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.mdSkeletonDetailGroup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mdSkeletonDetailGroup:last-child {
  border-bottom: none;
}


.mdSkeletonDetailLabel {
  height: 16px;
  width: 100px;
}

.mdSkeletonDetailValue {
  height: 18px;
  width: 120px;
}

/* Responsive Skeleton */
@media (max-width: 768px) {
  .mdSkeletonInfoCardsContainer {
    grid-template-columns: 1fr;
  }
  
  .mdSkeletonStatsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mdSkeletonTenderItemHeader {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .mdSkeletonBigCountdown {
    padding: 1.5rem 2rem;
  }
  
  .mdSkeletonCountdownTime {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .mdSkeletonStatsContainer {
    grid-template-columns: 1fr;
  }
}
/* #endregion */

.mdInfoCardValue.mdDateValue {
  font-size: 1.2rem;
}

.mdInfoCardTimeZone {
  font-size: 0.8rem;
  font-weight: normal;
  opacity: 0.7;
  margin-left: 0.25rem;
  color: inherit;
}

/* Removed decorative shapes for cleaner design */

/* Clean icon colors for each info card */
.mdInfoCard:nth-child(1) .mdInfoCardIcon {
  color: var(--primary-color);
}

.mdInfoCard:nth-child(2) .mdInfoCardIcon {
  color: #ec4899;
}

.mdInfoCard:nth-child(3) .mdInfoCardIcon {
  color: var(--success-color);
}

.mdInfoCard:nth-child(4) .mdInfoCardIcon {
  color: var(--warning-color);
}

/* Büyük Geri Sayım Sayacı */
.mdBigCountdownContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 3rem 0;
  position: relative;
}

.mdBigCountdownBadge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #361877 0%, #111866 50%, #1b0942 100%) !important;
  box-shadow: 0 8px 25px rgba(54, 24, 119, 0.3), 0 4px 12px rgba(27, 9, 66, 0.2);
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-width: 350px;
  z-index: 1;
  transition: all 0.3s ease;
}

.mdBigCountdownBadge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
  transition: all 0.3s ease;
}

.mdBigCountdownBadge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(54, 24, 119, 0.4), 0 6px 15px rgba(27, 9, 66, 0.3);
  background: linear-gradient(135deg, #3f1d87 0%, #1a1e76 50%, #1f0a4a 100%) !important;
}

.mdBigCountdownBadge:hover::before {
  transform: scale(1.1);
  opacity: 0.8;
  transition: all var(--transition-speed) ease;
  background: var(--primary-color);
}

/* Renk sınıfları */
.mdBigCountdownBadge.urgent {
  background: var(--danger-color);
  border-color: var(--danger-color);
}

.mdBigCountdownBadge.warning {
  background: var(--warning-color);
  border-color: var(--warning-color);
}

.mdBigCountdownBadge.info {
  background: var(--info-color);
  border-color: var(--info-color);
}

.mdBigCountdownBadge.safe {
  background: var(--success-color);
  border-color: var(--success-color);
}

/* Removed complex animations for simpler design */

/* Removed complex shimmer effects for cleaner design */

.mdBigCountdownBadge i {
  margin-right: 1.5rem;
  font-size: 2.2rem;
  color: white;
}

.mdBigCountdownBadge span {
  color: white;
}

/* UTC+3 Zaman Dilimi Etiketi */
.mdTimeZone {
  font-size: 0.85rem;
  font-weight: normal;
  opacity: 0.85;
  margin-left: 0.5rem;
  display: inline-block;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mdCountdownLabel {
  font-size: 1rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* İhale Öğeleri Stilleri */
.mdTenderItemsSection {
  margin-top: 3rem;
}

/* İstatistik Kartları Stilleri */
.mdItemStatsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 242, 245, 0.9) 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.mdItemStatsContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(71, 118, 230, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

.mdItemStatCard {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(71, 118, 230, 0.1);
  transition: all var(--transition-speed) ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Dekoratif şekiller her kart için */
.mdItemStatCard::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.mdItemStatCard:nth-child(1)::before {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  top: -20px;
  right: -20px;
}

.mdItemStatCard:nth-child(2)::before {
  background: linear-gradient(135deg, #10b981, #34d399);
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
}

.mdItemStatCard:nth-child(3)::before {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.mdItemStatCard:nth-child(4)::before {
  background: linear-gradient(135deg, #ef4444, #f87171);
  bottom: -25px;
  right: 20px;
  width: 70px;
  height: 70px;
}

.mdItemStatCard:nth-child(5)::before {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.mdItemStatCard:hover {
  box-shadow: 0 8px 20px rgba(71, 118, 230, 0.15);
  border-color: rgba(71, 118, 230, 0.3);
  transform: translateY(-2px);
}

.mdItemStatIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(142, 84, 233, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* İkon renkleri kartlara göre özelleştirilmiş */
.mdItemStatCard:nth-child(1) .mdItemStatIcon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.mdItemStatCard:nth-child(2) .mdItemStatIcon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.mdItemStatCard:nth-child(3) .mdItemStatIcon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.mdItemStatCard:nth-child(4) .mdItemStatIcon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.mdItemStatCard:nth-child(5) .mdItemStatIcon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.mdCurrencyIcon {
  font-weight: 700;
  font-size: 1.1rem;
}

.mdItemStatContent {
  flex: 1;
}

.mdItemStatTitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.mdItemStatValue {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* İstatistik Rozetleri Stilleri */
.mdItemStatsBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.mdItemStatBadge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(var(--md-primary-rgb), 0.1);
  color: var(--md-primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.mdItemStatBadge i, .mdItemStatBadge span {
  margin-right: 0.25rem;
  font-size: 0.8rem;
}

/* Documents Section - Active Tenders Style */
.mdTenderDocuments {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 242, 245, 0.9) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.mdDocumentsTitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 1rem 0;
  padding-left: 0.5rem;
  border-left: 3px solid var(--primary-color);
}

.mdDocumentsList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.mdDocumentItem {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: all var(--transition-speed);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mdDocumentItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.mdDocumentIcon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.mdDocumentIcon i {
  font-size: 1rem;
}

.mdDocumentIcon i.fa-file-pdf { color: #e53935; }
.mdDocumentIcon i.fa-file-word { color: #1565c0; }
.mdDocumentIcon i.fa-file-excel { color: #2e7d32; }
.mdDocumentIcon i { color: var(--primary-color); }

.mdDocumentInfo {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mdDocumentName {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mdDocumentDetails {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mdDocumentCategory {
  font-size: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.mdDocumentType {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mdSectionTitle::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 24px;
  background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
  margin-right: 0.75rem;
  border-radius: 2px;
}

.mdTenderItemCard {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all var(--transition-speed);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.mdTenderItemCard:hover {
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

/* Removed decorative elements for cleaner design */

.mdTenderItemHeader {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(90deg, #361877 0%, #111866 50%, #1b0942 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}


/* Alternatif 1: Koyu mor-siyah */
/* Removed alternative header styles for cleaner Active Tenders design */

/* Removed decorative elements for cleaner header design */

.mdItemNameContainer {
  flex: 1;
  padding-right: 1.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.mdItemNameHeader {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  letter-spacing: 2px;
}

.mdItemNameHeader i {
  display: none; /* Hide icon like Active Tenders */
}

/* Divider between title and info */
.mdTenderDivider {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* Info container like Active Tenders */
.mdTenderInfo {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(79, 70, 229, 0.2) 50%, rgba(124, 58, 237, 0.1) 100%);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

/* TenderDetail Item Info Container - Same style as Active Tenders */

.mdTenderInfo::before {
  content: attr(data-number);
  font-size: 1rem;
  color: rgba(246, 255, 121, 0.9);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mdTenderInfo::after {
  content: attr(data-description);
  font-size: 1rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.4;
  display: -webkit-box;
  
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Removed icon styles - using text only like Active Tenders */

/* Removed item description for cleaner design */

.mdTenderDivider {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 1rem;
}

.mdTenderInfo {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(79, 70, 229, 0.2) 50%, rgba(124, 58, 237, 0.1) 100%);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.mdTenderNumber {
  font-size: 1rem;
  color: rgba(246, 255, 121, 0.9);
  font-weight: 600;
}

.mdTenderDescription {
  font-size: 1rem;
  color: rgba(255, 255, 255, 1);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mdItemTypeContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  min-width: 140px;
  position: relative;
  z-index: 2;
}

/* Countdown Badge - Active Tenders Style */
.mdCountdownBadge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  width: auto;
}

.mdCountdownBadge i {
  margin-right: 0.75rem;
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}

.mdCountdownText {
  position: relative;
  z-index: 2;
}

.mdTimeZone {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-left: 0.5rem;
}

.mdBtnOffer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgb(255, 255, 255);
  color: rgb(8, 46, 95);
  box-shadow: 0 4px 8px rgba(76, 149, 246, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.mdBtnOffer i {
  font-size: 1rem;
}

.mdBtnOffer:hover {
  box-shadow: 0 6px 12px rgba(76, 149, 246, 0.25);
  background: rgb(83, 45, 255);
  color: white;
  border-color: rgba(42, 102, 255, 0.2);
  transition: all 0.3s;
}

.mdTenderItemBody {
  padding: 1.5rem;
  display: flex;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 242, 245, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.mdTenderItemBody::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(71, 118, 230, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

.mdItemName {
  font-size: 1.3rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 1rem;
}

.mdItemDetails {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed);
  position: relative;
  z-index: 1;
}

.mdItemDetails:hover {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.mdDetailGroup {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

.mdDetailGroup:last-child {
  border-bottom: none;
}

/* Removed alternating backgrounds for cleaner Active Tenders style */

.mdDetailLabel {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.85rem;
  flex-shrink: 0;
  min-width: 100px;
  line-height: 1.4;
}

.mdDetailValue {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: right;
  flex: 1;
  word-wrap: break-word;
  line-height: 1.4;
}

.mdPriceValue, .mdTotalPriceValue {
  color: #e67e22;
  font-weight: 800;
}



/* #region Responsive Design - 9 Screen Sizes */

/* 1. Desktop Large (1921px+) */
@media (min-width: 1921px) {
  .mdTenderDetailContainer {
    padding: 1rem 3rem 2rem 3rem;
  }
  
  .mdInfoCardsContainer {
    gap: 2rem;
  }
  
  .mdBigCountdownBadge {
    font-size: 2rem;
    padding: 2rem 4rem;
    min-width: 400px;
  }
}

/* 2. Desktop Standard (1367px - 1920px) */
@media (min-width: 1367px) and (max-width: 1920px) {
  .mdTenderDetailContainer {
    padding: 1rem 2rem 2rem 2rem;
  }
}

/* 3. Desktop Small (1201px - 1366px) - 6px font reduction */
@media (min-width: 1201px) and (max-width: 1366px) {
  .mdTenderDetailContainer {
    padding: 1rem 1.5rem 2rem 1.5rem;
  }
  
  .mdBigCountdownBadge {
    font-size: 1.2rem; /* 1.8 - 0.6 */
    padding: 1.25rem 2.5rem;
    min-width: 300px;
  }
  
  .mdInfoCardTitle {
    font-size: 0.84rem; /* 0.9 - 0.06 */
  }
  
  .mdInfoCardValue {
    font-size: 0.99rem; /* 1.05 - 0.06 */
  }
  
  .mdInfoCardValue.mdCurrencyValue {
    font-size: 1.34rem; /* 1.4 - 0.06 */
  }
  
  .mdSectionTitle {
    font-size: 1.44rem; /* 1.5 - 0.06 */
  }
  
  .mdItemNameHeader {
    font-size: 1.74rem; /* 1.8 - 0.06 */
  }
  
  .mdTenderInfo {
    padding: 0.5rem;
  }
  
  .mdItemStatTitle {
    font-size: 0.79rem; /* 0.85 - 0.06 */
  }
  
  .mdItemStatValue {
    font-size: 1.04rem; /* 1.1 - 0.06 */
  }
  
  .mdSectionTitle {
    font-size: 1.74rem; /* 1.8 - 0.06 */
  }
  
  .mdDetailLabel {
    font-size: 0.84rem; /* 0.9 - 0.06 */
  }
  
  .mdDetailValue {
    font-size: 0.89rem; /* 0.95 - 0.06 */
  }
  
  .mdDocumentName {
    font-size: 0.84rem; /* 0.9 - 0.06 */
  }
  
  .mdDocumentsTitle {
    font-size: 1.04rem; /* 1.1 - 0.06 */
  }
  
  .mdTenderInfo {
    padding: 0.4rem;
  }
}

/* 4. Tablet Large (993px - 1200px) - 6px font reduction */
@media (min-width: 993px) and (max-width: 1200px) {
  .mdTenderDetailContainer {
    padding: 1rem;
  }
  
  .mdInfoCardsContainer {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  
  .mdTenderItemHeader {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding: 1.25rem;
  }
  
  .mdItemNameContainer {
    padding-right: 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .mdItemNameHeader {
    text-align: center;
  }
  
  
  .mdItemTypeContainer {
    justify-content: center;
  }
  
  .mdItemStatsContainer {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
  
  .mdBigCountdownBadge {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    min-width: 300px;
  }
  
  .mdInfoCardTitle {
    font-size: 0.84rem;
  }
  
  .mdInfoCardValue {
    font-size: 0.99rem;
  }
  
  .mdSectionTitle {
    font-size: 1.44rem;
  }
  
  .mdItemNameHeader {
    font-size: 1.44rem;
  }
  
  .mdItemStatTitle {
    font-size: 0.79rem;
  }
  
  .mdItemStatValue {
    font-size: 1.04rem;
  }
  
  .mdSectionTitle {
    font-size: 1.74rem;
  }
  
  .mdDetailLabel {
    font-size: 0.84rem;
  }
  
  .mdDetailValue {
    font-size: 0.89rem;
  }
  
  .mdDocumentName {
    font-size: 0.84rem;
  }
  
  .mdDocumentsTitle {
    font-size: 1.04rem;
  }
}

/* 5. Tablet (769px - 992px) - 6px font reduction */
@media (min-width: 769px) and (max-width: 992px) {
  .mdTenderDetailContainer {
    padding: 1rem;
  }
  
  .mdInfoCardsContainer {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  
  .mdTenderItemHeader {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding: 1.25rem;
  }
  
  .mdItemNameContainer {
    padding-right: 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .mdItemNameHeader {
    text-align: center;
  }
  
  
  .mdItemTypeContainer {
    justify-content: center;
  }
  
  .mdItemStatsContainer {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .mdBigCountdownBadge {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    min-width: 300px;
  }
  
  .mdInfoCardTitle {
    font-size: 0.84rem;
  }
  
  .mdInfoCardValue {
    font-size: 0.99rem;
  }
  
  .mdSectionTitle {
    font-size: 1.44rem;
  }
  
  .mdItemNameHeader {
    font-size: 1.44rem;
  }
  
  .mdItemStatTitle {
    font-size: 0.79rem;
  }
  
  .mdItemStatValue {
    font-size: 1.04rem;
  }
  
  .mdSectionTitle {
    font-size: 1.74rem;
  }
  
  .mdDetailLabel {
    font-size: 0.84rem;
  }
  
  .mdDetailValue {
    font-size: 0.89rem;
  }
  
  .mdDocumentName {
    font-size: 0.84rem;
  }
  
  .mdDocumentsTitle {
    font-size: 1.04rem;
  }
  
  .mdDocumentsList {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  
  .mdTenderInfo {
    padding: 0.4rem 0.5rem;
  }
  
  .mdTenderNumber,
  .mdTenderDescription {
    font-size: 0.84rem;
  }
}

/* 6. Mobile Large (481px - 768px) - 6px font reduction */
@media (min-width: 481px) and (max-width: 768px) {
  .mdTenderDetailContainer {
    padding: 0.75rem;
  }
  
  .mdInfoCardsContainer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .mdInfoCard {
    min-width: 100%;
  }
  
  .mdTenderItemHeader {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding: 1rem;
  }
  
  .mdItemNameContainer {
    padding-right: 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .mdItemNameHeader {
    text-align: center;
  }
  
  
  .mdItemTypeContainer {
    justify-content: center;
  }
  
  .mdItemStatsContainer {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .mdBigCountdownBadge {
    font-size: 1.14rem; /* 1.2 - 0.06 */
    padding: 1rem 2rem;
    min-width: 250px;
  }
  
  .mdInfoCardTitle {
    font-size: 0.84rem;
  }
  
  .mdInfoCardValue {
    font-size: 0.99rem;
  }
  
  .mdSectionTitle {
    font-size: 1.44rem;
  }
  
  .mdItemNameHeader {
    font-size: 1.44rem;
  }
  
  .mdItemStatTitle {
    font-size: 0.79rem;
  }
  
  .mdItemStatValue {
    font-size: 1.04rem;
  }
  
  .mdSectionTitle {
    font-size: 1.74rem;
  }
  
  .mdDetailLabel {
    font-size: 0.84rem;
  }
  
  .mdDetailValue {
    font-size: 0.89rem;
  }
  
  .mdDocumentName {
    font-size: 0.84rem;
  }
  
  .mdDocumentsTitle {
    font-size: 1.04rem;
  }
  
  .mdDocumentsList {
    grid-template-columns: 1fr;
  }
  
  
  .mdTenderInfo {
    padding: 0.4rem 0.75rem;
    margin-top: 0.5rem;
  }
}

/* 7. Mobile Small (320px - 480px) - 6px font reduction */
@media (min-width: 320px) and (max-width: 480px) {
  .mdTenderDetailContainer {
    padding: 0.5rem;
  }
  
  .mdInfoCardsContainer {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .mdTenderItemHeader {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    padding: 0.75rem;
  }
  
  .mdItemNameContainer {
    padding-right: 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .mdItemNameHeader {
    text-align: center;
  }
  
  
  .mdItemTypeContainer {
    justify-content: center;
  }
  
  .mdItemStatsContainer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .mdBigCountdownBadge {
    font-size: 1.14rem;
    padding: 0.75rem 1.5rem;
    min-width: 200px;
  }
  
  .mdInfoCardTitle {
    font-size: 0.84rem;
  }
  
  .mdInfoCardValue {
    font-size: 0.99rem;
  }
  
  .mdSectionTitle {
    font-size: 1.44rem;
  }
  
  .mdItemNameHeader {
    font-size: 1.44rem;
  }
  
  .mdItemStatTitle {
    font-size: 0.79rem;
  }
  
  .mdItemStatValue {
    font-size: 1.04rem;
  }
  
  .mdSectionTitle {
    font-size: 1.74rem;
  }
  
  .mdDetailLabel {
    font-size: 0.84rem;
  }
  
  .mdDetailValue {
    font-size: 0.89rem;
  }
  
  .mdDocumentName {
    font-size: 0.84rem;
  }
  
  .mdDocumentsTitle {
    font-size: 1.04rem;
  }
  
  .mdDetailGroup {
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
  }
  
  .mdDetailLabel {
    min-width: auto;
  }
  
  .mdDetailValue {
    text-align: left;
  }
  
  .mdTenderInfo {
    padding: 0.3rem 0.5rem;
    margin-top: 0.5rem;
  }
}

/* 8. Mobile Extra Small (< 320px) - 6px font reduction */
@media (max-width: 319px) {
  .mdTenderDetailContainer {
    padding: 0.25rem;
  }
  
  .mdInfoCardsContainer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .mdTenderItemHeader {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    padding: 0.5rem;
  }
  
  .mdItemNameContainer {
    padding-right: 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .mdItemNameHeader {
    text-align: center;
  }
  
  
  .mdItemTypeContainer {
    justify-content: center;
  }
  
  .mdItemStatsContainer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .mdBigCountdownBadge {
    font-size: 1.14rem;
    padding: 0.5rem 1rem;
    min-width: 180px;
  }
  
  .mdInfoCardTitle {
    font-size: 0.84rem;
  }
  
  .mdInfoCardValue {
    font-size: 0.99rem;
  }
  
  .mdSectionTitle {
    font-size: 1.44rem;
  }
  
  .mdItemNameHeader {
    font-size: 1.44rem;
  }
  
  .mdItemStatTitle {
    font-size: 0.79rem;
  }
  
  .mdItemStatValue {
    font-size: 1.04rem;
  }
  
  .mdSectionTitle {
    font-size: 1.74rem;
  }
  
  .mdDetailLabel {
    font-size: 0.84rem;
  }
  
  .mdDetailValue {
    font-size: 0.89rem;
  }
  
  .mdDocumentName {
    font-size: 0.84rem;
  }
  
  .mdDocumentsTitle {
    font-size: 1.04rem;
  }
  
  .mdDetailGroup {
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
  }
  
  .mdDetailLabel {
    min-width: auto;
  }
  
  .mdDetailValue {
    text-align: left;
  }
  
  .mdTenderInfo {
    padding: 0.25rem 0.5rem;
    margin-top: 0.25rem;
  }
}

/* #endregion */

/* Section Title Styles */
.mdSectionTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 2rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}