

.availability {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

.available {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.not-available {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

.loading {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #cccccc;
}

.selected-lots-box {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    background: #fafafa;
}

.selected-lots-title {
    margin-bottom: 8px;
    font-weight: 700;
    color: #333333;
}

.selected-lot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
}

.selected-lot-row:last-child {
    border-bottom: none;
}

.selected-lot-number {
    font-weight: 700;
    color: #222222;
}

.selected-lot-expiry {
    color: #666666;
    font-size: 13px;
}

.selected-lot-quantity {
    white-space: nowrap;
    font-weight: 700;
}

.cart-lots-container {
    margin-top: 12px;
}
.checkout-button{
    background-color:#0c6f54;
    color:black;
    opacity:0.5;
    cursor:not-allowed;
}
.cart-lot-card {
    margin-bottom: 10px;
    padding: 13px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
}

.cart-lot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.cart-lot-number {
    font-weight: 700;
    color: #222222;
}

.cart-lot-expiry {
    margin-top: 3px;
    font-size: 13px;
    color: #666666;
}

.cart-lot-stock {
    white-space: nowrap;
    font-weight: 600;
    color: #2e7d32;
}

.cart-lot-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.cart-lot-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #cccccc;
    border-radius: 6px;
    background: #f7f7f7;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
}

.cart-lot-btn:hover {
    background: #eeeeee;
}

.cart-lot-btn:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.cart-lot-selected-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.cart-lot-message {
    margin-top: 12px;
    padding: 9px 12px;
    border-radius: 7px;
    font-weight: 600;
}

.cart-lot-message.valid {
    color: #2e7d32;
    background: #e8f5e9;
    border: 1px solid #4caf50;
}

.cart-lot-message.invalid {
    color: #c62828;
    background: #ffebee;
    border: 1px solid #f44336;
}


.saved-lot-error {
    color: #c62828;
    font-weight: 600;
}

.lot-reselection-title {
    margin-bottom: 5px;
    font-weight: 700;
    color: #c62828;
}

.lot-reselection-description {
    margin-bottom: 8px;
    color: #555555;
    font-size: 13px;
}

