.container {
    display: flex;
    justify-content: center; /* Centers the cards horizontally */
    gap: 20px; /* Adds space between the cards */
}

.card-header{
    color: #e09a10;
}
.card{
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes the button to the bottom */
    flex: 1; /* Allows the cards to take equal width */
    max-width: 300px; /* Adjust width as needed */
    padding: 20px;
    text-align: center;

    border-radius: 10px;
    border-color: lightgrey;
    border-style: solid;
    border-width: 1px;
}

.price-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes the button to the bottom */
    flex: 1; /* Allows the cards to take equal width */
    max-width: 600px; /* Adjust width as needed */
    padding: 20px;
    text-align: center;

    border-radius: 10px;
    border-color: lightgrey;
    border-style: solid;
    border-width: 1px;
}

.card p {
    flex-grow: 1; /* Expands text content to take available space */
}

.card button {
    align-self: center; /* Centers the button horizontally */
}

button:focus, .btn:focus {
    outline: none;
    box-shadow: none;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
    width: 100%;
}

.button-group button {
    flex: 1; /* Make buttons equal width */
    max-width: 150px; /* Adjust width as needed */
}

.input-group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between*/
    width: 100%;

}

.input-group input {
  
    font-size: 16px;
    height: 20px; /* Ensures uniform height */
}

.calculator {
    display: flex;
    align-items: center; /* Ensures icon is perfectly centered */
    justify-content: center;
    height: 20px; /* Same height as input */
    margin-bottom: 10px;
}


.loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}

/* .invoice-container {
    display: flex;
    justify-content:space-between; 
    align-items: center; 
    width: 100%;
} */

.invoice-container {
    display: flex;
    flex-direction: column; /* Ensures elements are stacked vertically */
    width: 100%;
}

.invoice-header {
    display: flex;
    justify-content: space-between; /* Aligns first two elements left and right */
    align-items: center;
    width: 100%;
}

.invoice-details {
    display: none; /* Initially hidden */
    margin-top: 10px; /* Adds some space between the first row and the table */
    width: 100%;
    text-align: left; /* Align table content to the left */
}