body {
  background-color: red !important;
}
body {
  margin: 0;
  font-family: 'Goudy Old Style', Bahnschrift Light;
  background: linear-gradient(135deg, #1e3a8a, #312e81);
  color: #fff;
}

/* HEADER */
.header {
  text-align: center;
  padding: 40px 20px;
}

.header h1 {
  color: #fbbf24;
}

.icon {
  background: orange;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;
}

/* LAYOUT */
.container {
  display: flex;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  flex-wrap: wrap;
}

.card {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 15px;
  flex: 1;
  min-width: 320px;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* INPUT */
select, input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
}

/* BUTTON */
button {
  margin-top: 15px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  font-weight: bold;
  cursor: pointer;
}

/* RATES */
.rate-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin: 6px 0;
}

/* RESULT CARD */
.result-card {
  background: #0f172a;
}

/* TOP INFO */
.info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.info b {
  color: #fbbf24;
}

/* SECTION */
.section {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* SLABS */
.slab {
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 10px;
  margin-top: 6px;
}

/* DIVIDER */
.divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 10px 0;
}

/* TOTALS */
.total-row {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.total-row b {
  color: #fbbf24;
}

/* GRAND TOTAL */
.grand {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  color: #fbbf24;
}