body {
    background: #f3f4f4;
}

.field-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.field-container label {
    width: 70px;
    margin-bottom: 0;
}
.field-container input {
    width: 80px;
    text-align: left;
    margin: 0 10px;
}
.field-container .btn {
    padding: 5px 10px;
}
.btn-minus {
    background-color: #ed4c78;
    color: white;
}
.btn-plus {
    background-color: #00c9a7;
    color: white;
}
.amount-display {
    margin-left: 10px;
    font-weight: bold;
}
.tooltip-icon {
    margin-left: 5px;
    cursor: pointer;
    color: gray;
}
.tooltip-text {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: .25rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
.tooltip-icon:hover + .tooltip-text {
    display: block;
}
.tooltip-text:hover {
    display: block;
}
.section-title {
    text-align: center;
    margin-bottom: 20px;
}
.total-container {
    margin-top: 20px;
}
#extra-fields label {
    width: 130px;
}
.field-container {
    background-color: #f8fafd;
    border-radius: .25rem;
    padding: 5px 10px;
    font-size: 1.2em;
    font-weight: bold;
}
.text {
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: bold;
}
.row {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(38, 60, 85, 0.16);
    border-radius: .25rem;
    padding-top: 20px;
    margin: 30px -15px;
}
@media print {
    .no-print {display: none;}
}