/* finance.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #222;
}

.finance-wrapper{
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px;
  background: #fff;
}

.finance-header h1 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.basket-summary {
  margin-bottom: 30px;
}

.basket-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.basket-table th,
.basket-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.basket-table th {
  background: #eee;
}

.deposit-form {
  margin: 30px 0;
  padding: 15px;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
}

.deposit-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.deposit-form input[type="text"] {
  width: 200px;
  padding: 8px;
  font-size: 14px;
  margin-right: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.deposit-form button {
  padding: 8px 16px;
  background: #0070ba;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;

  transition: background 0.3s;
}

.deposit-form button:hover {
  background: #005c9d;
}

.finance-options-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}

.option {
  background: #f1f1f1;
  border: 1px solid #ccc;
  padding: 15px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 290px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 300px;
}

.finance-logo {
  height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.option h2 {
  font-size: 18px;
  margin: 10px 0;
}

.option p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.finance-button {
  background: #0070ba;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.3s;
}

.finance-button:hover {
  background: #005c9d;
}

.finance-disclaimer {
  font-size: 13px;
  color: #555;
  margin-top: 40px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.no-finance-msg {
  color: #cc0000;
  font-weight: bold;
  margin-top: 10px;
}
.finance-approx-note {
  font-size: 0.9em;
  color: #555;
  margin-top: 15px;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .finance-options-row {
    flex-direction: column;
    gap: 20px;
  }

  .option {
    max-width: 100%;
      min-height: 380px;
  }
    .basket-table td{font-size: 12px;}
    .deposit-form{font-size: 15px;}
  

}




