@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Roboto&display=swap");

.container {
  display: flex;
  flex-direction: column;
  width: 50vw;
}

:root {
  --primary-color: #0B0C10;
  --secondary-color: #66FCF1;
  --white: #ffffff;
}
* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: var(--white);
}

.main-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
}

.producer {
    font-size: 50px;
    color: var(--primary-color);
    text-align: center;
}

.container {
    width: 100%;
    min-height: 200px;
    margin: auto;
    margin-top: 0rem;
    padding: 2rem 1rem;
    text-align: center;
 background-color: var(--primary-color);
  margin-bottom: 2rem;
}

h1,
p {
  color: white;
}

.label {
  font-size: 1.3rem;
  padding: 1.5rem 1rem 0.5rem;
  color: var(--secondary-color);
}

.caption {
  font-size: 1.3rem;
  padding: 1.5rem 1rem 0.5rem;
  color: var(--secondary-color);
}

input {
  padding: 1rem;
  height: 50px;
  display: block;
  color: var(--primary-color);
  font-weight: 700;
}

button {
  padding: 0.5rem 1rem;
  display: block;
  font-size: 1rem;
  border: none;
  margin: 1rem auto 0;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: bold;
  cursor: pointer;
}

button:hover{
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: solid var(--secondary-color);
}

.cash-given-section {
  display: none;
}

.notes-section {
  display: none;
}

.errorMsg {
  padding-top: 1rem;
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: bold;
}

#output {
  margin: 0.5rem 0;
}

#output table,
th,
td {
  padding: 0.2rem;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border: 2px solid white;
  border-collapse: collapse;
}

.no-of-notes {
  background-color: var(--primary-color);
  font-weight: bold;
}

table {
  width: 100%;
  table-layout: fixed;
}

th,
td {
  word-wrap: break-word;
}

.buttonNext {
  margin-bottom: 1rem;
  cursor: pointer;
}

.description {
  padding: 0rem 6rem;
}

.heading {
  margin: 0rem;
}

.inputBox {
  width: 500px;
  margin: auto;
  margin-top: 0.5rem;
}

.inputSection {
  text-align: center;
}

.footer {
  background-color: var(--primary-color);
  padding: 1rem 1rem;
}

.footer-header {
  color: var(--white);
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.footer .link {
  font-size: 20px;
  text-decoration: none;
  padding: 7px 15px;
  background: none;
  color: var(--white);
  border: 1px solid transparent;
}

.footer .link:hover {
  color: #66FCF1;
  border: 1px solid var(--white);
  border-radius: 8px;
}

.social-links {
  text-align: center;
  padding-inline-start: 0px;
}

.list-item-inline {
  display: inline;
  padding: 0rem 0.5rem;
}

.powered{
    font-family:Arial, Helvetica, sans-serif;
    color:beige
}