body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

h1, p {
    margin: 0;
    padding: 0;
}

.grad-text {
    background: linear-gradient(to right, rgb(108, 149, 255), rgb(255, 63, 117));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.navbar {
    padding: 30px 60px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 32px;
}

.beta {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
}

/* Index.html styles */

.product-container {
    text-align: center;
}

.product-heading {
    margin: 0px auto 60px auto;
    width: 400px;
    font-weight: 900;
    font-size: 54px;
    letter-spacing: -2px;
}

.add-product {
    display: block;
    width: 50%;
    margin: 0 auto 10px auto;
    padding: 10px;
    border: 1px grey solid;
    border-radius: 8px;
    transition: 0.5s;
}

.add-product:hover {
    cursor: pointer;
    background-color: lightgrey;
}

.prod-head {
    font-weight: 600;
    font-size: 18px;
}

.prod-info {
    font-size: 14px;
}

.product-form {
    display: none;
    width: 220px;
    margin: auto;
    padding: 40px;
    border: 1px gray solid;
    border-radius: 10px;
    background-color: rgb(108, 149, 255);
}

.prod-name {
    font-size: 14px;
    color: white;
    margin-bottom: 6px;
}

.prod-desc {
    font-size: 14px;
    color: white;
    margin-bottom: 6px;
}

#prodName {
    width: 200px;
    border: none;
    border-radius: 4px;
    padding: 8px 10px;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

#prodDesc {
    width: 200px;
    border: none;
    border-radius: 4px;
    padding: 8px 10px;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

#prodSubmit {
    display: block;
    width: 140px;
    border: none;
    border-radius: 4px;
    margin: 10px auto 0 auto;
    padding: 5px 20px;
    font-family: 'Quicksand', sans-serif;
    transition: 0.5s;
}

#prodSubmit:hover {
    cursor: pointer;
    background-color: rgb(212, 212, 212);
}

/* .product-selection {
    width: 300px;
    margin: 60px auto 0 auto;
}

.cake {
    width: 100%;
    border: 5px solid rgb(255, 52, 110, 0);
    border-radius: 10px;
    transition: 0.5s;
}

.cake:hover {
    border: 5px solid rgb(255, 52, 110, 1);
    cursor: pointer;
}

.product-info {
    margin-top: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 20px;
} */

/* Inputs.html styles */

.custom-input {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    margin-top: 40px;
    padding: 24px;
    background-color: white;
    border-top: 1px solid grey;
}

#customInput {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ing {
    font-size: 14px;
}

.ing-names p {
    margin-bottom: 10px;
}

.ing-price p {
    margin-bottom: 10px;
}

.ing-names input {
    width: 260px;
    padding: 10px 10px;
    border-radius: 6px;
}

.ing-price input {
    width: 120px;
    padding: 10px 10px;
    border-radius: 6px;
}

.profit {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 50px;
}

.profit-margin input {
    width: 300px;
    padding: 10px 10px;
    border-radius: 6px;
}

.temp-profit {
    visibility: hidden;
}

.invoice {
    text-align: center;
    margin-top: 50px;
}

.generate {
    margin-top: 20px;
}

#addIng {
    height: 60px;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: dodgerblue;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    transition: 0.5s;
}

#addIng:hover {
    cursor: pointer;
    background-color: rgb(89, 172, 254);
}

#generateInvoice {
    padding: 10px 60px;
    border-radius: 6px;
    background-color: dodgerblue;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    transition: 0.5s;
}

#generateInvoice:hover {
    cursor: pointer;
    background-color: rgb(89, 172, 254);
}