﻿.container {
  max-width: 1100px;
  margin: auto;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 22px;
  margin-bottom: 24px;
  text-align: center;
  color: #1e1e1e;
  line-height: 1.4;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
text-align: center;
}

th, td {
  border: 1px solid #ddd;
  padding: 12px 10px;
  vertical-align: top;
}

/* Первая строка — заголовок таблицы (жёлтая) */
tr:first-child td {
  background-color: #fffde7; /* светло-жёлтый */
  font-weight: bold;
  color: #795548;
  text-align: center;
}

/* Вторая строка — Срок депозита (голубой) */
tr:nth-child(2) td:not(:first-child) {
  background-color: #e3f2fd; /* светло-голубой */
  font-weight: bold;
  color: #0d47a1;
  text-align: center;
}

/* Третья строка — Минимальная сумма (красный) */
tr:nth-child(3) td:not(:first-child) {
  background-color: #ffebee; /* светло-красный */
  color: #b71c1c;
  font-weight: bold;
  text-align: center;
}

/* Четвёртая строка — Процентная ставка (зелёный) */
tr:nth-child(4) td:not(:first-child) {
  background-color: #e8f5e9; /* светло-зелёный */
  color: #1b5e20;
  font-weight: bold;
  text-align: center;
}

/* Остальные строки (серая заливка), кроме первого столбца */
tr:nth-child(n+5) td:not(:first-child) {
  background-color: #f5f5f5; /* светло-серый */
  color: #333;
  text-align: left;
}

/* Первый столбец — светло-жёлтый, жирный */
td:first-child {
  background-color: #fffde7 !important; /* очень светло-жёлтый */
  font-weight: bold;
  color: #5d4037;
}

/* Примечания */
.note {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  border-left: 4px solid #007BFF;
  padding-left: 12px;
}

/* Кнопка */
.download-btn {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.download-btn:hover {
  background-color: #0056b3;
}
