#calculator{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins';
    font-weight: 500;
    color: #8DC641;
    font-size: 18px;
     padding:15px;
    background-color: #f6f8fa;
    border-radius:15px;
}

#calculator label{
    font-weight: 500;
    color: #02323F;
}


.calculator-btn {
    background-color: #02323F; /* Button background color */
    color: #fff; /* Text color */
    border: 1px solid #8DC641; /* Remove default border */
    border-radius: 50px; /* Circular corners */
    padding: 5px 8px; /* Reduced padding for smaller size */
    font-size: 12px; /* Smaller font size */
    cursor: pointer; /* Change cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    width: 30px; /* Set smaller width */
    height: 30px; /* Set smaller height */
    text-align: center; /* Center the text */
    line-height: 20px; /* Center the text vertically */
    margin: 0 10px; /* Add space around the buttons */
}

.calculator-btn:hover {
    background-color: #02212A; /* Darker shade on hover */
}

.calculator-btn:focus {
    background-color: #2d2d2d; /* Active state color */
 
}

#unitCount {
    display: inline-block;
    width: 30px; /* Fixed width to prevent movement */
    text-align: center; /* Center the number */
}

@media(max-width:1024px){
    .qty{
    display: flex;
    flex-direction: column;
}
}

@media(max-width:767px){
    #calculator{
    display: flex;
    flex-direction:column;
    align-items:start;
    gap:20px;
    padding:15px;
    background-color: #f6f8fa;
    border-radius:15px;
}
}