.calculator {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#display {
    width: 100%;
    height: 40px;
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    padding: 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


html[data-bs-theme="light"] .navbar {
    background-color: #f8f9fa; /* light theme background color */
}
  
html[data-bs-theme="dark"] .navbar {
background-color: #333; /* dark theme background color */
}
  
input {
    color: black;
    min-width: 50px;
    max-width: 200px;
}

.form-label {
    color: white;
}


/* no arrow button on numeric inputs */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Alternative, no arrow button on numeric inputs, by adding class "no-spinners"  */
/* .no-spinners {
    -moz-appearance: textfield;
 }
 
 .no-spinners::-webkit-outer-spin-button,
 .no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
 } */

.qty-item{
    justify-content: center;
}

.bubble {
    border: 2px solid lightcoral;
    border-radius: 10px; /* Adjust for roundness */
    /* padding: 10px; */
    display: inline-block;
    color: green;
    max-width: 200px;
}

.bubble input {
    min-width: 0;
}


.bubble .form-control, .bubble select {
    display: inline-block;
    vertical-align: middle;
    /* margin: 5px 0; */
    /* width: auto; */
}


.col-md-6 > .form-label {
    display: block;
    margin-bottom: 5px; /* Space between label and bubble */
}


.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    margin-top: 20px;
}

button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    cursor: pointer;
}

button:hover {
    background-color: #e0e0e0;
}

.table > .table-striped> .table-hover {
    color: darkmagenta;
}
