/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/
/* Package row */
.package-item {
    display: flex;
    align-items: stretch; /* KEY: equal height */
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

/* Left text */
.package-item span {
    flex: 1;
    display: flex;
    align-items: center;
    line-height: 1.4;
}


/* Minus / plus buttons */
.package-item .qty-minus,
.package-item .qty-plus {
    width: 0px;
    border: none;
    background: #007f7a;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Input */
.package-item .qty-input {
    width: 60px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 16px;
}

/* Remove arrows */
.package-item .qty-input::-webkit-inner-spin-button,
.package-item .qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
