/* src/main/resources/static/css/custom.css */

.purchase-group {
    display: flex;
    height: 100%;
    border: 2px solid #198754;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.qty-controls {
    display: flex;
    align-items: center;
    width: 0;
    opacity: 0;
    overflow: hidden;
    background: #e8f5e9;
    transition: all 0.3s ease;
}

.purchase-group:hover .qty-controls {
    width: 100px;
    opacity: 1;
}

.purchase-group:hover .btn-purchase {
    background: #198754;
    color: white;
}

.btn-qty {
    border: none;
    background: transparent;
    color: #198754;
    font-size: 1.2rem;
    font-weight: bold;
    width: 35px;
}

.btn-qty:hover {
    background: #c8e6c9;
}

#displayQty {
    font-weight: bold;
    color: #198754;
    width: 30px;
    text-align: center;
}

.btn-purchase {
    border: none;
    background: transparent;
    color: #198754;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}